Consulting

Results 1 to 4 of 4

Thread: Solved: how to display all options of a combo box

  1. #1

    Solved: how to display all options of a combo box

    Hi

    Easy one for you guys :

    My combobox seems to have a display range of 8 options, for any more than that you have to scroll down. The problem is that i have 15 of them and I want them to be visible without having to scroll down.

    anyone know how to change the display range ?

  2. #2
    Knowledge Base Approver
    The King of Overkill!
    VBAX Master
    Joined
    Jul 2004
    Location
    Rochester, NY
    Posts
    1,727
    Location
    Hi circaa,

    One of the properties of a ComboBox is the "ListRows" property - the default for that is 8, you can either change it to 15, or set [vba]yourcombobox.listrows=yourcombobox.listcount[/vba] if you always want to see all of them.

    Matt

  3. #3
    thanks a lot Matt

  4. #4
    Knowledge Base Approver
    The King of Overkill! VBAX Master
    Joined
    Jul 2004
    Location
    Rochester, NY
    Posts
    1,727
    Location
    Glad to help!

Posting Permissions

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