Results 1 to 3 of 3

Thread: combobox

  1. #1

    Thread Starter
    Frenzied Member EyeTalion's Avatar
    Join Date
    Jul 2000
    Location
    New York
    Posts
    1,075

    combobox

    does the combobox have a property for Character Case? need everything entered in uppercase.
    It's tough being an unhandled exception...

    ___________
    VB.NET 2008
    VB.NET 2010
    ORACLE 11g
    CRYSTAL 11

  2. #2
    Fanatic Member
    Join Date
    Oct 1999
    Location
    England
    Posts
    982
    You could convert the characters to upper case like this.
    VB Code:
    1. combobox1.Text = (combobox1.Text).ToUpper
    You could execute this on keypress.


    Things I do when I am bored: DotNetable

  3. #3
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Or use this , if didn't work , then try the other way
    VB Code:
    1. Me.ComboBox1.Text.ToUpper()

    Uppercase it before sending it to the ComboBox .
    VB Code:
    1. .ToUpper

Posting Permissions

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



Click Here to Expand Forum to Full Width