how to have remarks copy to another page (1 Viewer)

luzz

Registered User.
Local time
Today, 11:46
Joined
Aug 23, 2017
Messages
346
Hi all, I would like to seek help on how to have this remarks on every page of my form? Currently, i am able to show this header on page 1, page 2 and page 3 if i selected 3 records. I am unable to show the details that i have fill up in page 1 in page 2 and page 3.

If Trim((rec.Remarks & "") <> "") Then
.txtRemarks = rec.Remarks
Else
.txtRemarks = "1) Please State: " & vbCrLf & _
"2) Shrink: Maximum W: L : Twist:" & vbCrLf & _
"3) Weight: +/- 5gm" & vbCrLf & _
"4) Width: +/- 1 inch" & vbCrLf & _
"5) sample - " & vbCrLf & _
"6) Buyer: "

End If
 

Uncle Gizmo

Nifty Access Guy
Staff member
Local time
Today, 19:46
Joined
Jul 9, 2003
Messages
16,373
How about a tab control?

Sent from my SM-G925F using Tapatalk
 

luzz

Registered User.
Local time
Today, 11:46
Joined
Aug 23, 2017
Messages
346
How about a tab control?

Sent from my SM-G925F using Tapatalk

Hmm, beside tab control? Because i am able to get other fields works in this method:

'* same Mill value for all records
If (Trim(rec.Mill & "") = "") Then
.cboMill = MillValue
Else
.cboMill = rec.Mill & ""
End If

I tried using this method for the remarks, and my remarks header doesnt appear on the form.
 

Minty

AWF VIP
Local time
Today, 19:46
Joined
Jul 26, 2013
Messages
10,379
If you put this in the form header and the rest of your data was on tabbed pages it would just be there all the time?

Perhaps you post up a picture of what you are trying to achieve?
 

luzz

Registered User.
Local time
Today, 11:46
Joined
Aug 23, 2017
Messages
346
If you put this in the form header and the rest of your data was on tabbed pages it would just be there all the time?

Perhaps you post up a picture of what you are trying to achieve?

I have attached 3 pictures of what i want to achieve in the remarks textbox on the form.

As you can see in the PO1 picture I have key in the MRName, and country, hence for PO2 and PO3 i will not need to key in anymore, it will still be fix in the PO2 and PO3.

What i want to achieve is that i will only need to key in the remarks details in the first record. For example if i select 4 records on my form, i will only need to key in the remarks details in the first record and it will fix for the next few records.
 

Attachments

  • PO1.png
    PO1.png
    92.3 KB · Views: 53
  • PO2.png
    PO2.png
    94.9 KB · Views: 58
  • PO3.png
    PO3.png
    94.9 KB · Views: 52

Users who are viewing this thread

Top Bottom