|
|
|||||||||
|
|||||||||
|
|||||||||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today! |
|
#1
|
|||
|
|||
|
resize a drop down..
Does anyone know how to control the size area of a drop down combo box? I want it to display EVERYTHING in the list without the scrollbars. Is that possible?
thanks! kristin |
|
#2
|
|||
|
|||
|
Isn't a standard combo dropdown width the same as the width of the control?
Access VBA has resizable combos if you are using Access.
__________________
====== Doug G ====== I didn't attend the funeral, but I sent a nice letter saying I approved of it. --Mark Twain |
|
#3
|
|||
|
|||
|
not the width.....I have like 20 items in the list, but when you select the dropdown, only about 5 are shown, and the rest you have to scroll to see. Know what I mean? I was just wondering if there was a way for ALL of the list to be viewed without scrolling.
![]() |
|
#4
|
||||
|
||||
|
Use a ListBox instead of a dropdown.
|
|
#5
|
|||
|
|||
|
It's possible, but...
Hi,
If you are developing for the Windows XP environment, and you include a manifest with your application, you can send a CB_SETMINVISABLE message to the combobox. Go to http://msdn.microsoft.com/library/d...tminvisible.asp for information about the message. Grtz.© M. |
|
#6
|
|||
|
|||
|
You can set the ListRows property of the combobox to
whatever value you want. Code:
combo1.ListRows = 20 I could not find anyother way to do this. |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > resize a drop down.. |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|