hitch_hiker
Active Member
- Joined
- Feb 21, 2012
- Messages
- 294
I have ( with much input and help from here ) a dual column combo box in a userform, which when it starts up, shows as an empty box, when I click on the arrow button, the anticipated list becomes visible and I can select from there. What I want, is when I open the userform I can see the first rows ( depending how long I make the combo box ) and then click the arrow button to continue the list. this way the combo box becomes self explanatory. Is this possible? or am I expecting too much
the code I'm using is:
the code I'm using is:
Rich (BB code):
Rich (BB code):
Private Sub UserForm_Initialize()
Dim cPart As Range
Dim ws As Worksheet
Set ws = Worksheets("product list")
' syntax modification suggested mrexcel.com Andrew Poulsom
Set cPart = ws.Range("U9:V" & ws.Range("U" & Rows.Count).End(xlUp).Row)
Me.cboPart.List = cPart.Value
' range error suggested mrexcel.com Norie
Me.cboPart.SetFocus
Rem http://www.contextures.com/xlUserForm02.html
End Sub