Display the value of control within a pop-up form

melvinlphillips

New member
Local time
Today, 08:12
Joined
Apr 20, 2012
Messages
5
Hi. I have a main form bound to a query. Within that form, I have a button which calls up another form (pop up form). I simply want value of the "claim#" field-control to display in the "claim#" field-control of the pop-up form. HELP!!!!!!!:banghead:
 
In the click event of the button, after it opens the form, use

Forms!PopUpFormNameHere.FieldNameHere = Me.FieldNameFromFirstForm

And I suggest NOT using special characters (nor spaces) in your field and object names. Use ClaimNo or ClaimNum instead of #. Special characters and spaces in names can cause you all sorts of grief.
 
FYI, I moved your thread to a more appropriate forum.
 
We've all done it. Half the time I don't even notice what forum a post is in.
 

Users who are viewing this thread

Back
Top Bottom