Arcade Prehacks

Results 1 to 3 of 3
  1. #1
    Senior Member
    Join Date
    Oct 2008
    Location
    Having a rave in the UK!
    Posts
    1,706

    (IsNumeric(TextBox1.text)) Example (VB)

    Making sure somethings, like a text box, is numeric in VB, needs a simple piece of code. Good for calculator applications.

    VB 2008

    Code:
    If (IsNumeric(TextBox1.text)) Then
    Code to excecute here
    End If
    VB 6 (Prediction)

    Code:
    If (IsNumeric(Text1.text)) Then
    Code to excecute here
    End If
    Sorry if my VB 6 sample is wrong, I have no experience with VB 6.

    Thanks for reading!

  2. #2
    Banned
    Join Date
    Jul 2009
    Posts
    67

    Re: (IsNumeric(TextBox1.text)) Example (VB)

    I know you were making trainers... All trainer tutorials here are pretty old and some of them their images are gone.
    Would you consider making one in future?

  3. #3
    Senior Member
    Join Date
    Oct 2008
    Location
    Having a rave in the UK!
    Posts
    1,706

    Re: (IsNumeric(TextBox1.text)) Example (VB)

    Yeah, sure. I have to complete this History project first (busy, busy) - but I will in the future.

    I have VB 2008, so people with VB 6 will have to use my dodgey VB 6 predictions...I think my tut is still here...but needs updating.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •