Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a form that onlost focus of txtBadgID executes the following
code: Private Sub txtBadgeID_AfterUpdate() strEmpID = DLookup("[id]", "tblEmployee", "[BadgeID] = forms!frmSave!checkedoutby") If IsNull(strEmpID) Then MsgBox "Badge Not Found, Enter Employee then Proceed!", vbCritical, "Equipment Check Out" Me.txtBadgeID.Value = "" Me.txtBadgeID.SetFocus Exit Sub End If Me.Employee_ID.Value = strEmpID Me.Equipment_ID.Value = Forms!frmScanLocation.txtEquipmentID Me.CheckedOut.Value = True DoCmd.Close Forms!frmScanLocation.Visible = True Forms!frmScanLocation.txtScanLoc.Value = "" End Sub My problem is that txtBadgID is not gaining focus if strEmpID isNull (the first if Statement. Any Ideas? It then line me.txtBadgeID.Setfocus should work... The line me.txtBadgeID.Value = "" does in face clear the text box from all text.. Any thoughts? Thanks, Dave |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Form - Text Box Focus | Excel Programming | |||
set focus on user form | Excel Programming | |||
Form Focus and SelStart | Excel Programming | |||
User Form focus | Excel Programming | |||
Sending Form Focus? | Excel Programming |