473,385 Members | 1,392 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Only Numbers

Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical
data into a textbox. thankz in advanced -Ro

--------------------------------------------------------------------
" Reality is an illusion caused by lack of alcohol. "
--------------------------------------------------------------------



Jul 17 '05 #1
9 10410
Rowan Chapman wrote:
Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical
data into a textbox. thankz in advanced -Ro

--------------------------------------------------------------------
" Reality is an illusion caused by lack of alcohol. "
--------------------------------------------------------------------


You could use isNumeric() in the Change, LostFocus or Validate event for
the textbox.
--
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GCS d-@ s:- a C++ ULS>++ P L+>+++ E- W++ N++ o? K- w(++)>+++$
!O M- V? PS PE Y+ PGP- t 5 X+ R- tv++ b+ DI D+ G e++ h+ r++ y+
------END GEEK CODE BLOCK------
Jul 17 '05 #2
From a previous post of mine...

I usually try and steer people away from using IsNumeric to "proof"
supposedly numeric text. Consider this (also see note at end of post):

ReturnValue = IsNumeric("($1,23,,3.4,,,5,,E67$)")

Most people would not expect THAT to return True. IsNumeric has some "flaws"
in what it considers a proper number and what most programmers are looking
for.

I had a short tip published by Pinnacle Publishing in their Visual Basic
Developer magazine that covered some of these flaws. Originally, the tip was
free to view but is now viewable only by subscribers.. Basically, it said
that IsNumeric returned True for things like -- currency symbols being
located in front or in back of the number as shown in my example (also
applies to plus, minus and blanks too); numbers surrounded by parentheses as
shown in my example (some people use these to mark negative numbers);
numbers containing any number of commas before a decimal point as shown in
my example; numbers in scientific notation (a number followed by an upper or
lower case "D" or "E", followed by a number equal to or less than 305 -- the
maximum power of 10 in VB); and Octal/Hexadecimal numbers (&H for
Hexadecimal, &O or just & in front of the number for Octal).

NOTE:
======
In the above example and in the referenced tip, I refer to $ signs and
commas and dots -- these were meant to refer to your currency, thousands
separator and decimal point symbols as defined in your local settings --
substitute your local regional symbols for these if appropriate.

As for the question about checking numbers, here are two functions that I
have posted in the past for similar questions..... one is for digits only
and the other is for "regular" numbers:

Function IsDigitsOnly(Value As String) As Boolean
IsDigitsOnly = Len(Value) > 0 And _
Not Value Like "*[!0-9]*"
End Function

Function IsNumber(ByVal Value As String) As Boolean
' Leave the next statement out if you don't
' want to provide for plus/minus signs
If Value Like "[+-]*" Then Value = Mid$(Value, 2)
IsNumber = Not Value Like "*[!0-9.]*" And _
Not Value Like "*.*.*" And _
Len(Value) > 0 And Value <> "." And _
Value <> vbNullString
End Function

Rick - MVP
"Sado" <oi***@boingo.net> wrote in message
news:8V********************@newsb.telia.net...
Rowan Chapman wrote:
Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical data into a textbox. thankz in advanced -Ro

--------------------------------------------------------------------
" Reality is an illusion caused by lack of alcohol. "
--------------------------------------------------------------------


You could use isNumeric() in the Change, LostFocus or Validate event for
the textbox.
--
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GCS d-@ s:- a C++ ULS>++ P L+>+++ E- W++ N++ o? K- w(++)>+++$
!O M- V? PS PE Y+ PGP- t 5 X+ R- tv++ b+ DI D+ G e++ h+ r++ y+
------END GEEK CODE BLOCK------

Jul 17 '05 #3
> Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical
data into a textbox. thankz in advanced -Ro


First off, what do you mean by "numerical data"... digits only or floating
point numbers? Next, by "only allow", do you mean *while* the user is typing
in his/her entry? Or do you mean a way to check it *after* the entry is
completed (like from the Click event of an "I'm Done" type of
CommandButton)? Most people consider the latter to be a better interface for
the user.

Rick - MVP
Jul 17 '05 #4

"Rowan Chapman" <rn*******@bigpond.com> wrote in message
news:j5******************@news-server.bigpond.net.au...
Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical
data into a textbox. thankz in advanced -Ro


If you want to totally not permit user to type non numeric entries into the
textbox, then you have to intercept the keypress. Something like this (you
can adjust it to your needs):

Private Sub Text1_KeyPress(KeyAscii As Integer)
Call num(KeyAscii)
End Sub

Private Sub num(KeyAscii As Integer)
' allow backspace and decimal
If KeyAscii = 8 Or KeyAscii = 9 Or KeyAscii = Asc(".") Then Exit Sub
' if not a number, zero out the key (nothing shows up)
KeyAscii = IIf(Chr$(KeyAscii) Like "[0-9]", KeyAscii, 0)
End Sub
Jul 17 '05 #5
"Raoul Watson" <Wa*****@IntelligenCIA.com> wrote in message news:<qe*****************@nwrdny03.gnilink.net>...
"Rowan Chapman" <rn*******@bigpond.com> wrote in message
news:j5******************@news-server.bigpond.net.au...
Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical
data into a textbox. thankz in advanced -Ro


If you want to totally not permit user to type non numeric entries into the
textbox, then you have to intercept the keypress.


that doesn't prevent users from pasting data
Jul 17 '05 #6

"Bob Butler" <bu*******@earthlink.net> wrote in message
news:fa*************************@posting.google.co m...
"Raoul Watson" <Wa*****@IntelligenCIA.com> wrote in message

news:<qe*****************@nwrdny03.gnilink.net>...
"Rowan Chapman" <rn*******@bigpond.com> wrote in message
news:j5******************@news-server.bigpond.net.au...
Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical data into a textbox. thankz in advanced -Ro


If you want to totally not permit user to type non numeric entries into the textbox, then you have to intercept the keypress.


that doesn't prevent users from pasting data


Rick already addressed the validation after the data is entered.
Jul 17 '05 #7
> > > > Hey all!
> I'm kinda new to VB but not to programin'.
> So I know what it is like when you are asked trivial questions.
> Could some1 please tell me what the syntax would be 2 only allow numerical > data into a textbox. thankz in advanced -Ro
>

If you want to totally not permit user to type non numeric entries
into
the textbox, then you have to intercept the keypress.


that doesn't prevent users from pasting data


Rick already addressed the validation after the data is entered.


Actually, Bob's point is quite valid. Why would you attempt to block most
non-digits, but still have to check afterward in order to take some action.
Put another way, why would you want to block me from typing a non-digit, but
permit me to paste one in? You would either block all attempts to input
non-digits or permit them during data entry and validate the entry after the
user is finished entering it (in response to a "Done" button or, maybe, the
focus attempting to leave the TextBox). My comment was meant to side with
the "let the user enter anything they want and parse it afterwards" crowd.
If you want to block non-digits while typing or pasting, the following will
do that...

Dim LastPosition As Long

Private Sub Text1_Change()
Static LastText As String
Static SecondTime As Boolean
If Not SecondTime Then
With Text1
If .Text Like "*[!0-9]*" Then
Beep
SecondTime = True
.Text = LastText
.SelStart = LastPosition
Else
LastText = .Text
End If
End With
End If
SecondTime = False
End Sub

Private Sub Text1_MouseDown(Button As Integer, _
Shift As Integer, X As Single, Y As Single)
With Text1
LastPosition = .SelStart
'Place any other MouseDown event code here
End With
End Sub

Private Sub Text1_KeyPress(KeyAscii As Integer)
With Text1
LastPosition = .SelStart
'Place any other KeyPress checking code here
End With
End Sub

Rick - MVP
Jul 17 '05 #8

"Rick Rothstein" <ri************@NOSPAMcomcast.net> wrote in message
news:3s********************@comcast.com...
> > Hey all!
> > I'm kinda new to VB but not to programin'.
> > So I know what it is like when you are asked trivial questions.
> > Could some1 please tell me what the syntax would be 2 only allow numerical
> > data into a textbox. thankz in advanced -Ro
> >
>
> If you want to totally not permit user to type non numeric entries

into
the
> textbox, then you have to intercept the keypress.

that doesn't prevent users from pasting data


Rick already addressed the validation after the data is entered.


Actually, Bob's point is quite valid. Why would you attempt to block most
non-digits, but still have to check afterward in order to take some

action. Put another way, why would you want to block me from typing a non-digit, but permit me to paste one in? You would either block all attempts to input
non-digits or permit them during data entry and validate the entry after the user is finished entering it (in response to a "Done" button or, maybe, the focus attempting to leave the TextBox). My comment was meant to side with
the "let the user enter anything they want and parse it afterwards" crowd.
If you want to block non-digits while typing or pasting, the following will do that...

Dim LastPosition As Long

Private Sub Text1_Change()
Static LastText As String
Static SecondTime As Boolean
If Not SecondTime Then
With Text1
If .Text Like "*[!0-9]*" Then
Beep
SecondTime = True
.Text = LastText
.SelStart = LastPosition
Else
LastText = .Text
End If
End With
End If
SecondTime = False
End Sub

Private Sub Text1_MouseDown(Button As Integer, _
Shift As Integer, X As Single, Y As Single)
With Text1
LastPosition = .SelStart
'Place any other MouseDown event code here
End With
End Sub

Private Sub Text1_KeyPress(KeyAscii As Integer)
With Text1
LastPosition = .SelStart
'Place any other KeyPress checking code here
End With
End Sub

Rick - MVP


Excellent.. that's the way to do it (with a solution) but a post such as
"that doesn't prevent ..." doesn't quite help the original poster does it?
Jul 17 '05 #9
Thanks all, your insight/input was really helpful.

--------------------------------------------------------------------
" Reality is an illusion caused by lack of alcohol. "
--------------------------------------------------------------------

"Rowan Chapman" <rn*******@bigpond.com> wrote in message
news:j5******************@news-server.bigpond.net.au...
Hey all!
I'm kinda new to VB but not to programin'.
So I know what it is like when you are asked trivial questions.
Could some1 please tell me what the syntax would be 2 only allow numerical
data into a textbox. thankz in advanced -Ro

--------------------------------------------------------------------
" Reality is an illusion caused by lack of alcohol. "
--------------------------------------------------------------------


Jul 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: jel | last post by:
I ran what was submitted in several forums, but it's not exactly what i'm looking for. I'm dy'n over here. Ah, the frustrations of an amateur programmer. I included the code below in c++. which...
14
by: root | last post by:
Hi group, Apologies in advance if this has been asked somewhere before, but I haven't managed to get anything from the Google archives - I've been getting introductory guides to C++ all day...
2
by: anonieko | last post by:
This applies to javascript dynamic textbox onkey > > > Newsgroups: comp.lang.javascript From: Lasse Reichstein Nielsen <l...@hotpop.com> - Find messages by this author Date: Fri, 15 Jul 2005...
2
by: Sreya | last post by:
Hello..I hope someone can help me with this little that I've been having for a while. I have a form..which has many fields. one of them being a test #. what I need a combo box with only certain...
38
by: Maarten | last post by:
hi all, how can i retrieve the type if a value inserted in an inputbox. what i want to do is make shure people only insert an integer type, if they don't they get an error message. ...
3
by: Tom | last post by:
Being a newbie to JS, I would appreciate some advice. When a visitor enters a number into a textbox, I want to check that it is 15 digits long and then display a message accordingly and the...
4
by: sreemati | last post by:
Hi, I have seen various online resources and tuturials. I ahve written a piece of code but it does not seem to work Problem defined: If not number entered (as not mandartory) ignore ...
2
by: Vbbeginner07 | last post by:
Hi all Wonder if anyone can help me out to solve this: please find the code of textbox that accepts only characters and one textbox that accepts only numbers: (vb) textbox for accepting...
2
by: sdanda | last post by:
Hai My textbox accepts only positive numbers.It doesnot accept even floating points also.How to this?I wrote this code //Code Dim neg As Integer = 0 If (Not IsNumeric(envno.Text)) Or...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.