M
Mark Kubicki
I have a simple sub that check to see if a value has been entered whenthe
user extis that control
but, it is not returning... the cuser remains at the next control that was
clicked on...
Any thoughts would be appreciated
thanks inadvance,
mark
here's my code
Private Sub txtType_Exit(Cancel As Integer)
If Len(Nz(Me.txtType)) < 1 Then
responce = MsgBox("You must enter a fixtue type before moving on..."
& Chr(10) & Chr(13) & _
"Please try again", vbOKOnly + vbCritical, "Missing Fixture
Type")
Me.txtType.SetFocus
Else
Me.txtType = UCase(Me.txtType)
End If
End Sub
user extis that control
but, it is not returning... the cuser remains at the next control that was
clicked on...
Any thoughts would be appreciated
thanks inadvance,
mark
here's my code
Private Sub txtType_Exit(Cancel As Integer)
If Len(Nz(Me.txtType)) < 1 Then
responce = MsgBox("You must enter a fixtue type before moving on..."
& Chr(10) & Chr(13) & _
"Please try again", vbOKOnly + vbCritical, "Missing Fixture
Type")
Me.txtType.SetFocus
Else
Me.txtType = UCase(Me.txtType)
End If
End Sub