I have button on a form that does this:
Dim arNumber As String
DoCmd.OpenForm "Frm_Rlookup", acNormal, WindowMode:=acDialog
arNumber = Forms!Frm_Rlookup!cmboARlookup
MsgBox "User input was: " & arNumber
DoCmd.Close acReport, "Frm_Rlookup"
The problem is that once the user selects data from “frm_Rlookup” nothing happens. Adding a form close to afterUpdate crashes the code.
I hope someone can tell me what I am missing and the next step.