Sponsor Advertisements help keep UGN Security Online.
Sponsor Advertisements help keep UGN Security Online.
Want to earn prizes for clicking online advertisements? Join Rewards1.com.
|
|
|
#17652 - 09/02/02 07:49 PM
Only Numbers
|
Member
Registered: 03/03/02
Posts: 185
Loc: Vancouver
|
How could I make it possible for users to only enter numbers into a text box? Is it possible for it to just not display letters period? Or how would I just make a messagebox giving an error if they did enter a letter and hit enter?
|
|
Top
|
|
|
|
Sponsor Advertisements help keep UGN Security Online.
Sponsor Advertisements help keep UGN Security Online.
|
|
#17654 - 09/03/02 07:51 AM
Re: Only Numbers
|
Member
Registered: 03/01/02
Posts: 197
Loc: Belgium
|
hmm, no idea about that one SR, this one is without api and is also very simple a little example: Private sub textbox_keypress(keyAscii as Integer)
If (KeyAscii < 48 or KeyAscii > 57) and Keyascii <> 8 Then
'messagebox here
Keyascii = 0
'ascii value 8 = backscpace (when they entered a wrong number :) )
End if
End sub
_________________________
Never argue with fools... They will only drag you down to their level, and beat you with experience...
|
|
Top
|
|
|
|
#17655 - 09/03/02 07:52 AM
Re: Only Numbers
|
Member
Registered: 03/01/02
Posts: 197
Loc: Belgium
|
argh, ok just delete this one I did wanted to correct something and accidenlty clicked on reply with a quote 
_________________________
Never argue with fools... They will only drag you down to their level, and beat you with experience...
|
|
Top
|
|
|
|
#17656 - 09/03/02 06:05 PM
Re: Only Numbers
|
DollarDNS Owner
Registered: 03/04/02
Posts: 1273
Loc: OH, USA
|
I fixed your post Predator so that the <'s and >'s are displayed properly. Yes, I still use that technique to outlaw various characters. Did you learn that technique from my whois code?  I made a textbox in it only accept domain-relevent characters. But yeah, try out my technique predator. The characters besides numbers and the backspace are blocked at the source. It's more efficient.  Besides, that, you can use other styles to make it all upper case letters or lowercase. Maybe more, I can't remember all the edit box styles.
|
|
Top
|
|
|
|
#17657 - 09/03/02 09:35 PM
Re: Only Numbers
|
Member
Registered: 03/01/02
Posts: 197
Loc: Belgium
|
Na, i did learn this technique at school, cause we did learn to use vb and databases, so sometimes it was really necesarry to use it, and since we didn't learn any api calls... Maybe your code is the best solution, but for people not familiar with api it might be a problem (don't know if Mornse is familiar with it) so i gave a little alternative 
_________________________
Never argue with fools... They will only drag you down to their level, and beat you with experience...
|
|
Top
|
|
|
|
#17658 - 09/04/02 02:10 AM
Re: Only Numbers
|
Member
Registered: 03/03/02
Posts: 185
Loc: Vancouver
|
Well, I've used API before, but I wouldn't say I'm really familiar with it. I dislike using it cause I'm lazy and don't like using/understanding all that code cause I like to understand the code I use. I'll probably just use pred's example because I understand it all. Thanx for the help guys.
|
|
Top
|
|
|
|
|
Registered: 03/01/02
Posts: 505
|
|
2198 Members
46 Forums
24781 Topics
59951 Posts
Max Online: 1567 @ 04/25/10 10:20 AM
|
|
|
0 registered (),
318
Guests and
257
Spiders online. |
|
Key:
Admin,
Global Mod,
Mod
|
|
|