|
-
May 1st, 2007, 12:13 PM
#1
Thread Starter
New Member
[RESOLVED] combo box buffer
I am new here (hello all) and need some help
I searched for a thread that may address my issue but found none
what I need to do is to change the buffer on a combo box which is populated with client numbers, currently if the client number is 123456 and you select "1" the combo box by default takes you to the client number with the lowest client number closest to 100000, what I need is to be able to select "1" then "2" then "3", etc. until either the desired client number is found or I select 6 characters
here are some of my settings for my combo box:
DropDownStyle = DropDownList
DrawMode = DropDownList
any help would be much appreciated...
Michael
-
May 1st, 2007, 12:26 PM
#2
Re: combo box buffer
If you're using 2005, you can set the combobox's autocompletemode and autocompletesource properties either in the designer or in code
Code:
ComboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend
ComboBox1.AutoCompleteSource = AutoCompleteSource.ListItems
-
May 1st, 2007, 12:48 PM
#3
Thread Starter
New Member
Re: combo box buffer
sorry, forgot to mention that I am using 2003
-
May 1st, 2007, 01:22 PM
#4
Re: combo box buffer
Have a look at this project.
-
May 1st, 2007, 02:07 PM
#5
Thread Starter
New Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|