Greyowlsl
Mlak Mlak
- Local time
- Today, 15:47
- Joined
- Oct 4, 2006
- Messages
- 206
Hi,
I have a form which has a serial number text box. There is also a button that opens a search for that text box:
However i have an after update procedure:
Now (im assuming) the after update procedure is not working because the Search menu is still open (until manually closed).
Is this my problem, and what can i do.
Thanks for your time.
Leon
I have a form which has a serial number text box. There is also a button that opens a search for that text box:
Code:
Me.txtSerialNumber.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Code:
Private Sub txtSerialNumber_AfterUpdate()
If IsNull(Me.Text90) Or Me.Text90 = "" Then
ElseIf IsNull(Me.txtAuthorizationNumber) Or Me.txtAuthorizationNumber = "" Then MsgBox ("RMA Entered!")
End If
End Sub
Is this my problem, and what can i do.
Thanks for your time.
Leon