I just created a combo box on my main form that launches different forms depending on which item is selected. I would like to "carry" some of the information on the main form onto the form created when I selected the combo box option. What would be the best way to do this?
Here is the code that is implemented:
Private Sub Action_AfterUpdate()
Select Case [Action]
Case "Evaluate"
DoCmd.OpenForm "Evaluate"
Case "SETUP"
DoCmd.OpenForm "SETUP SUBFORM"
End Select
End Sub
I want the ID value from my main form to also be inclued in both of these forms when they are opened.
Thank you,
Zach
Here is the code that is implemented:
Private Sub Action_AfterUpdate()
Select Case [Action]
Case "Evaluate"
DoCmd.OpenForm "Evaluate"
Case "SETUP"
DoCmd.OpenForm "SETUP SUBFORM"
End Select
End Sub
I want the ID value from my main form to also be inclued in both of these forms when they are opened.
Thank you,
Zach