Passing info to data entry

jkfeagle

Codus Confusious
Local time
Today, 06:17
Joined
Aug 22, 2002
Messages
166
I am using a command button to open a form and am linking the data on the two forms by passing the CaseNum field value. The first form does not allow data edit/entry but the newly launched one does. How do I get the data entry form to automatically fill the CaseNum field with the linked value? The form is not being launched in data entry mode but rather has additions allowed so a blank record shows up. That's were I want the CaseNum value to automatically appear.
 
Add the following to the OnClick Event of the command button:


Forms.frm2ndformName.CaseNum = me.casenum
 
Thanks.
 

Users who are viewing this thread

Back
Top Bottom