I have a question about passing variables. I have a situation where the user lands on a text box and this has to pop another screen that the user loads data into.
Private Sub ReceiptQty_GotFocus()
frmNewScreen.Show
End Sub
At this point, the new screen pops up and the user loads data. I also have a command button on this form that writes some of the data off to a file and rehides the screen. There is one piece of data that I want to bring back to the original GotFocus event from this new screen and I cannnot figure out how to get it there.
Thanks
Rob
Private Sub ReceiptQty_GotFocus()
frmNewScreen.Show
End Sub
At this point, the new screen pops up and the user loads data. I also have a command button on this form that writes some of the data off to a file and rehides the screen. There is one piece of data that I want to bring back to the original GotFocus event from this new screen and I cannnot figure out how to get it there.
Thanks
Rob