need help with edit screen

ThatDougGuy

Registered User.
Local time
Today, 00:44
Joined
Feb 25, 2001
Messages
10
What im trying to do is.....leave soom hair on my head HA HA

I have a screen with a button , when clicked ineed a screen with entry flied i have that but i wanted to bring one field from the first screen to the second .
 
Easiest way...Set up a global variable ("Dim Public strMyField as string"), set that field to your value in the first form, use that field in the second form.

Also, you'll save everyone else's hairline if you run spellcheck before you post.
 
Use code like this:

[Forms]![SomeForm]![SomeField] = [Forms]![SomeOtherForm]![SomeOtherField]

If the code appears in the module for SomeForm, the reference to [Forms]![SomeForm]! may be replaced by Me!
 

Users who are viewing this thread

Back
Top Bottom