CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2006
    Posts
    4

    Unhappy Combo Box Scroll Bar

    I have searched a lot of forums to find a solution regarding the vertical scrollbar in a combobox. Seems like every time I click the combobox, the values are shown but the scroll bar fails to appear. I have currently 84 items to display on a screen that shows only 40. Is there any way of activating the vertical scroll bar. I realize that it is automatically turned on but it does not seem to appear in my program.

    Thanks

  2. #2
    Join Date
    Oct 2005
    Location
    Islamabad, Pakistan
    Posts
    1,277

    Re: Combo Box Scroll Bar

    i can't find any such problem , there seems to be problem in ur code somewhere.

  3. #3
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: Combo Box Scroll Bar

    Quote Originally Posted by pgururaj
    I have searched a lot of forums to find a solution regarding the vertical scrollbar in a combobox. Seems like every time I click the combobox, the values are shown but the scroll bar fails to appear. I have currently 84 items to display on a screen that shows only 40. Is there any way of activating the vertical scroll bar. I realize that it is automatically turned on but it does not seem to appear in my program.

    Thanks
    Hello & Welcome to the Forums!

    What is the code you are using¿

  4. #4
    Join Date
    Jul 2006
    Posts
    4

    Re: Combo Box Scroll Bar

    typename is the name of my combobox so: -

    For r as integer = 4 to 88
    b = X1s.Cells(r,2).value
    typename.Items.Add(b.ToString)
    Next

    X1s is an excel work sheet

    Dim X1s As Excel.Worksheet =CType(X1.bWorksheets(2), Excel.Worksheet)

    Thanks

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

Featured