vbaprogammer
Programmer
I can't get the cursor back into the textbox (or list, or combo) in Word 2000. This does work in Word 97, though.
Can anyone help?
Private Sub Textbox1_Exit (ByVal Cancel as MSForms.ReturnBoolean)
If Not IsNumeric(TextBox1.Text) Then
MsgBox "Please enter a numeric value"
Cancel = True
End If
End Sub
Can anyone help?
Private Sub Textbox1_Exit (ByVal Cancel as MSForms.ReturnBoolean)
If Not IsNumeric(TextBox1.Text) Then
MsgBox "Please enter a numeric value"
Cancel = True
End If
End Sub