Closed Thread
Results 1 to 2 of 2

Textbox format

Hybrid View

  1. #1
    Registered User
    Join Date
    05-03-2007
    Posts
    26

    Textbox format

    Dear Experts

    There are two textboxes in userform.

    I want textbox1 to accept only Date value in format "dd-mm-yy"
    Textbox2 should accept only logical vaue "Y" or "N"

    Please help

  2. #2
    Forum Contributor
    Join Date
    11-23-2005
    Location
    Perth, Australia
    Posts
    218

    Textbox format

    Hi vba-lover

    Try something like the below for textbox1 :

    If TextBox1.Text = Format(TextBox1.Text, "dd-mm-yyyy") Then
    'your code here
    Else
    'your code here
    End If
    for the Yes or No textbox I would use a combobox with Yes or No options, but if you do want to use a textbox try something like

    If TextBox2.Text <> "Y" Then
        If TextBox2.Text <> "N" Then
        MsgBox "Please Enter Y or N"
        Else
        End If
    End If
    Let me know how you go!

Closed 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