RE: Required Field for 7 Numeric digits only
- From: LRay67 <LRay67@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Sun, 30 Mar 2008 13:33:00 -0700
Malik, after playing with the code you gave me....below is the code that
works with verifying that it has 7 digits and is a numeric filled textbox and
the remainder of the code works.. Thanks for your input.....
Linda
Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
If KeyAscii = vbKeyTab Then
If TextBox1 = "" Then
MsgBox "Please enter Accounting Unit Code (7 Digits)"
Application.SendKeys ("{BS}")
TextBox1.Activate
Exit Sub
End If
Dim IsValid As Boolean
IsValid = True
' Checking if TextBox value is 7 digits and all the contents are numeric
or not
IsValid = ((Len(TextBox1.Text) = 7) And IsNumeric(TextBox1.Text))
If IsValid = False Then
MsgBox "Accounting Unit Code must contain 7 Digits only" ' , vbCritical
+ vbOKOnly
Application.SendKeys ("{BS}")
Exit Sub
End If
KeyAscii = 0
TextBox3.Activate
End If
End Sub
"Malik" wrote:
Hi,.
Private Sub TextBox1_LostFocus()
Dim IsValid As Boolean
IsValid = True
' Checking if TextBox value is 7 digits and all the contents are numeric
or not
IsValid = ((Len(TextBox1.Text) = 7) And IsNumeric(TextBox1.Text))
If IsValid = False Then
MsgBox "Please enter 7 numeric digits only...", vbCritical + vbOKOnly
End If
End Sub
You can improve this by adding this routine at any proper place in your code
--
Malik
"LRay67" wrote:
I have a required field that can contain only 7 numeric digits within the
textbox. Also want to put in a message box to alert them that this field
must have 7 numeric digits. Any suggestions on how to write the code behind
this? Thanks
Linda
- Follow-Ups:
- RE: Required Field for 7 Numeric digits only
- From: Malik
- Re: Required Field for 7 Numeric digits only
- From: Rick Rothstein \(MVP - VB\)
- RE: Required Field for 7 Numeric digits only
- References:
- Required Field for 7 Numeric digits only
- From: LRay67
- RE: Required Field for 7 Numeric digits only
- From: Malik
- Required Field for 7 Numeric digits only
- Prev by Date: Re: Having trouble with this code
- Next by Date: Re: Moving Files and creating copies
- Previous by thread: RE: Required Field for 7 Numeric digits only
- Next by thread: Re: Required Field for 7 Numeric digits only
- Index(es):
Relevant Pages
|