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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inputting an Form value into another Form

Status
Not open for further replies.

Data69

Technical User
Jan 24, 2003
24
US
I have a form that allows me to insert a Problem # (P0000000). I have this form query a table to see if this record already exists. If the form doesn't exist I would like to have the inputted problem number applied to another form that will then pull data from an external database. How do I apply the unbound text from the first form into the second form?
 
You could do something like this:

docmd.open "form2"

forms!form2.[field] = me.[field]

This will only work if form2 is not embedded in another form
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top