Results 1 to 5 of 5

Thread: [RESOLVED] combo box buffer

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2007
    Posts
    11

    Resolved [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

  2. #2
    PowerPoster stanav's Avatar
    Join Date
    Jul 2006
    Location
    Providence, RI - USA
    Posts
    9,290

    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

  3. #3

    Thread Starter
    New Member
    Join Date
    May 2007
    Posts
    11

    Re: combo box buffer

    sorry, forgot to mention that I am using 2003

  4. #4
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: combo box buffer

    Have a look at this project.

  5. #5

    Thread Starter
    New Member
    Join Date
    May 2007
    Posts
    11

    Re: combo box buffer

    thank you hack

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