Visual Basic Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingVisual Basic Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
Generate data entry and reporting .NET Web apps in minutes, straight from your database. Read our FREE whitepaper “Build Web 2.0 Applications Without Hand-Coding” Download now!
  #1  
Old December 30th, 2003, 07:50 AM
The Slayer The Slayer is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Location: Sheffield, UK
Posts: 7 The Slayer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
VB textbox validation

Hey all. I'm very new to VB and i need some help on validation.

I have 2 text boxes (txtLeft & txtTop) to change the loacation of a picture (imgMan), when a button (cmdLocate) is pressed I want the picture to appear where it's supposed to. I need the left value of the pic to be the same as whats in the left text box and same with the top values.
That's all fine. What I need the help in is the text validation. How would i make the text box so it only accepts numbers between 0 & 7800 (for the left box) and 0 & 7200 (for the top box). It has to reject any other characters except numeric ones.

Cheers, that probebly didn't make sense at all

Ben.

Reply With Quote
  #2  
Old December 30th, 2003, 07:51 AM
The Slayer The Slayer is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Location: Sheffield, UK
Posts: 7 The Slayer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
This is what I have so far....

Private Sub cmdLocate_Click()

If Not IsNumeric(txtLeft.Text) Then
MsgBox "The value you have entered is not valid. Please enter a different value" _
, vbOKOnly, "Error"
txtLeft.Text = ""
End If

If Not IsNumeric(txtTop.Text) Then
MsgBox "The value you have entered is not valid. Please enter a different value" _
, vbOKOnly, "Error"
txtTop.Text = ""
End If

imgMan.Left = txtLeft.Text
imgMan.Top = txtTop.Text
imgMan.Visible = True
End Sub


Thats just making it numeric. I still need to know how to limit it to numbers between 0 and 7200/7800

Reply With Quote
  #3  
Old December 30th, 2003, 08:02 AM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,738 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 1 h 34 m 28 sec
Reputation Power: 443
try something like this
Code:
Private Sub cmdLocate_Click()
    Dim LeftPos As Integer
    Dim TopPos As Integer

    If(IsNumeric(txtLeft.Text)) Then
        If(Val(txtLeft.Text) >= 0 AND Val(txtLeft.Text) <= 7800) Then
            LeftPos = Val(txtLeft.Text)
        Else
            MsgBox "Invalid number"
        End If
    Else
       MsgBox "Value Must be numeric"
    End If

    If(IsNumeric(txtTop.Text)) Then
        If(Val(txtTop.Text) >= 0 AND Val(txtTop.Text) <= 7200) Then
            TopPos = Val(txtTop.Text)
        Else
            MsgBox "Invalid Number"
        End If
    Else
        MsgBox "Value must be numeric"
    End If

    imgMan.Left = LeftPos 
    imgMan.Top = TopPos 
    imgMan.Visible = True 
End Sub

Reply With Quote
  #4  
Old December 30th, 2003, 08:06 AM
The Slayer The Slayer is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Location: Sheffield, UK
Posts: 7 The Slayer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
PERFECT!!!

Thankyou SO much! You are t3h 1337 M4570R!

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingVisual Basic Programming > VB textbox validation


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway