I have a form that should get a specific value in a text box when the form is being loaded. The specific value that the text box should take on is saved in a text box in another form and not in a table.
Right now I have the following code in the on load event of the form.
Private Sub Form_Load()
DoCmd.OpenForm ("Products")
DoCmd.Minimize
Me![HelpFigure2] = Forms("Products").HelpFigure1
End Sub
This works. However I would like to do this without having to open the form "Products". Can I do this?
Stefan
Right now I have the following code in the on load event of the form.
Private Sub Form_Load()
DoCmd.OpenForm ("Products")
DoCmd.Minimize
Me![HelpFigure2] = Forms("Products").HelpFigure1
End Sub
This works. However I would like to do this without having to open the form "Products". Can I do this?
Stefan