Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Populate a field on one form from another

Status
Not open for further replies.

Jeddiah

Programmer
Apr 30, 2002
17
US
Is there a way to populate a field on form2
Source
Tabel1= PatientID = Indexed, number,duplicatesOK
after access generate an autonumber on form1
Source
Table2=PatientID=autonumber
I'm try to sync two forms without data for data entry. Sunforms are not an option it doesn't do what the users want.
 
Yes, like this...

Forms("Form2").MyField = Forms("Form1").MyField

Hopefully, your form2 is bound to Table1. If so, then this is possible.

Gary
gwinn7
A+, Network+
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top