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!

can't get access to data

Status
Not open for further replies.

Jcan

Programmer
Jul 16, 2001
25
US
Hi fellow, I have a combo box on a form and when the item is not in the list of selected items I open a data entry form for them to continue entering the new item info. My problem is I can't get the text the user entered on the previous form. I call the form passing the "NewData" text as a argument to the next form and now i want to access that data in the form's "form open" event. Any suggestions would be appreciated.
 
Hi!

Try this:

DoCmd.OpenForm "YourEntryFormName", , , , , , NewData

In the entry form when you need the data use:

Me.OpenArgs

hth Jeff Bridgham
bridgham@purdue.edu
 
works like a charm

Thanks guys,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top