Thanks it works now. Seems that although I had everything in the correct order, including the .SetFocus, the reason Form A's event didn't want to fire off was I didn't express the event as a property. Namely:
Code:
'Old Way, Starting at Form B
Forms.frmFormA.SetFocus
Me.cboMyCombobox = Forms.frmFormB.Form.txtMyTextBox
cboMyCombobox_AfterUpdate
DoCmd.Close acForm, frmFormB
'New Way, Starting at Form B
Forms.frmFormA.SetFocus
Forms.frmFormA.cboMyCombobox = Forms.frmFormB.Form.txtMyTextBox
Forms.frmFormA.cboMyCombobox_AfterUpdate
DoCmd.Close acForm, frmFormB
Although the "old" way normally works just fine when I'm starting and ending in the same form, the mere fact that I was starting in another form caused Access to require me to be explicit. I had to express the event as a property and it was confused by the "Me." even though I switched forms, so I had to use the "Forms.frmFormA.".
Greg Serrano
Michigan Dept. of Environmental Quality, Air Quality Division