Unity
01-10-2002, 11:59 AM
I am trying to a update a field in the main form as a result of chosen criteria in a pop up form before the pop up closes.........how can I do this?
|
View Full Version : How do I........ Unity 01-10-2002, 11:59 AM I am trying to a update a field in the main form as a result of chosen criteria in a pop up form before the pop up closes.........how can I do this? boblarson 01-10-2002, 12:21 PM Use this code in your pop up form's On Close event. Substituting your form and control names as indicated. Forms!MyMainFormName!txtMyTextBoxToUpdate.Value=Me .txtTheTextOnMyPopupForm.Value (Ignore the line break as this example is apparently too long for the message window to display here) BL hth [This message has been edited by boblarson (edited 01-10-2002).] Unity 01-10-2002, 12:44 PM YOU ARE THE MAN!!! Thanks!! |