Previous Thread
Next Thread
Print Thread
Rate Thread
#17652 09/02/02 11:49 AM
Joined: Mar 2002
Posts: 185
M
Member
Member
M Offline
Joined: Mar 2002
Posts: 185
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?


Cha want some w***up?

http://www.dopeskill.com
Sponsored Links
▼ Sponsored Links ▼ ▲ Sponsored Links ▲
#17653 09/02/02 06:37 PM
Joined: Mar 2002
Posts: 1,273
DollarDNS Owner
DollarDNS Owner
Joined: Mar 2002
Posts: 1,273
Here's the easiest and most effective way:

Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long) As Long
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Const GWL_STYLE = -16
Const ES_NUMBER = &H2000&

SetWindowLong Text1.hwnd, GWL_STYLE, GetWindowLong(Text1.hwnd, GWL_STYLE) Or ES_NUMBER


Domain Registration, Hosting, Management
http://www.dollardns.net
#17654 09/02/02 11:51 PM
Joined: Mar 2002
Posts: 197
P
Member
Member
P Offline
Joined: Mar 2002
Posts: 197
hmm, no idea about that one SR, this one is without api and is also very simple

a little example:

Code
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...
#17655 09/02/02 11:52 PM
Joined: Mar 2002
Posts: 197
P
Member
Member
P Offline
Joined: Mar 2002
Posts: 197
argh, ok just delete this one
I did wanted to correct something and accidenlty clicked on reply with a quote smirk


Never argue with fools... They will only drag you down to their level, and beat you with experience...
#17656 09/03/02 10:05 AM
Joined: Mar 2002
Posts: 1,273
DollarDNS Owner
DollarDNS Owner
Joined: Mar 2002
Posts: 1,273
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? wink 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. smile 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.


Domain Registration, Hosting, Management
http://www.dollardns.net
#17657 09/03/02 01:35 PM
Joined: Mar 2002
Posts: 197
P
Member
Member
P Offline
Joined: Mar 2002
Posts: 197
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 smile


Never argue with fools... They will only drag you down to their level, and beat you with experience...
#17658 09/03/02 06:10 PM
Joined: Mar 2002
Posts: 185
M
Member
Member
M Offline
Joined: Mar 2002
Posts: 185
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.


Cha want some w***up?

http://www.dopeskill.com
#17659 09/03/02 06:21 PM
Joined: Mar 2002
Posts: 1,273
DollarDNS Owner
DollarDNS Owner
Joined: Mar 2002
Posts: 1,273
bah humbug. cheap, cheap excuse! but oh well, what pred described is definately a technique worth learning though.


Domain Registration, Hosting, Management
http://www.dollardns.net

Link Copied to Clipboard
Member Spotlight
Gremelin
Gremelin
Portland, OR; USA
Posts: 7,204
Joined: February 2002
Forum Statistics
Forums41
Topics33,839
Posts68,797
Members2,177
Most Online73,244
Nov 9th, 2025
Latest Postings
Top Posters
UGN Security 41,392
Gremelin 7,204
SilentRage 1,273
Ice 1,146
pergesu 1,136
Infinite 1,041
jonconley 955
Girlie 908
unreal 860
Top Likes Received
Ghost 2
Girlie 1
unreal 1
Crime 1
Ice 1
Dartur 1
Powered by UBB.threads™ PHP Forum Software 8.0.0