ST4RCUTTER
Registered User.
- Local time
- Today, 01:22
- Joined
- Aug 31, 2006
- Messages
- 94
I created a combo box with several name values. I want to capture the value selected using open arguments and then pass it (via open argument) to another form for display in another text box. This is essentially an, "Are you sure you want this value" form. I looks like open arguments are hard coded from the other posts I've read. Can I do something like this?
DoCmd.OpenForm frm_popup, , , , , , Me.cbo_reassign
And then on the popup form have code for a textbox called "txb_verifyname"
Me.txb_verifyname.Value = Me.OpenArgs
DoCmd.OpenForm frm_popup, , , , , , Me.cbo_reassign
And then on the popup form have code for a textbox called "txb_verifyname"
Me.txb_verifyname.Value = Me.OpenArgs
Last edited: