Closed Thread
Results 1 to 5 of 5

Thread: Disable typing in combobox

  1. #1
    Crane's Avatar
    Crane is offline Programming Expert
    Join Date
    Nov 2005
    Posts
    398
    Rep Power
    25

    Disable typing in combobox

    I would like to disable typing in a combobox without disabling the control. The user would still be able to use the drop-down list but would not be able to type.

    How?

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Lop's Avatar
    Lop
    Lop is offline Speaks fluent binary
    Join Date
    May 2006
    Posts
    1,178
    Rep Power
    30
    This isn't so hard. You have to capture the keypress event for that control.

    Code:
    private: System::Void comboBox1_KeyPress(System::Object^  sender, System::Windows::Forms::KeyPressEventArgs^  e) {
    			 e->Handled = true;
    		 }

  4. #3
    Crane's Avatar
    Crane is offline Programming Expert
    Join Date
    Nov 2005
    Posts
    398
    Rep Power
    25
    Thanks lop, works perfect

  5. #4
    Lop's Avatar
    Lop
    Lop is offline Speaks fluent binary
    Join Date
    May 2006
    Posts
    1,178
    Rep Power
    30
    No problem!

  6. #5
    SpaceGhost is offline Newbie
    Join Date
    Sep 2008
    Posts
    1
    Rep Power
    0

    Re: Disable typing in combobox

    You have to do this:

    myComboBox.DropDownStyle = ComboBoxStyle.DropDownList;

Closed Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. hide letters while typing
    By delphiproblematic in forum Pascal and Delphi
    Replies: 5
    Last Post: 04-03-2010, 08:03 AM
  2. Replies: 1
    Last Post: 03-30-2010, 11:16 AM
  3. Disable typing in a combo box
    By Chan in forum C# Programming
    Replies: 8
    Last Post: 06-14-2009, 08:36 PM
  4. Typing injuries?
    By KeilanS in forum The Lounge
    Replies: 10
    Last Post: 11-25-2008, 10:17 AM

Tags for this Thread

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