+ Reply to Thread
Results 1 to 3 of 3

making sure the user enters in CAPS

Hybrid View

  1. #1
    Forum Contributor funkymonkUK's Avatar
    Join Date
    01-07-2005
    Location
    London, England
    Posts
    500

    Question making sure the user enters in CAPS

    Hi

    IS there a way that you can convert what a user puts in a textbox into CAPS or something that forces them to enter in caps?

    Many Thanks in advance

  2. #2
    Registered User
    Join Date
    05-03-2005
    Posts
    14
    You can write such OnChange event handler:

    Private Sub TextBox1_Change()
    TextBox1.Text = UCase(TextBox1.Text)
    End Sub

  3. #3
    Forum Contributor funkymonkUK's Avatar
    Join Date
    01-07-2005
    Location
    London, England
    Posts
    500

    Thumbs up

    cheers mate

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1