Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am currently building a form in VB and have hit a snag.
I want to have 3 CheckBoxes in a frame that drive a specific list to be selected from a single ComboBox. I.e. each CheckBox generates a different and unique list from the combobox. Any Ideas ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~ View and post usenet messages directly from http://www.ExcelForum.com/ |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would recommend option buttons. This way only 1 list would be supplied.
Private Sub OptionButton1_Click() ComboBox1.RowSource = "" ComboBox1.RowSource = "Sheet1!A1:A5" End Sub or Private Sub OptionButton1_Click() ComboBox1.RowSource = "" ComboBox1.RowSource = "mylistname" End Sub set up code for each button. -- sb "Dillonstar" wrote in message ... I am currently building a form in VB and have hit a snag. I want to have 3 CheckBoxes in a frame that drive a specific list to be selected from a single ComboBox. I.e. each CheckBox generates a different and unique list from the combobox. Any Ideas ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~ View and post usenet messages directly from http://www.ExcelForum.com/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for the advice, does exactly what I wanted...
TVM ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~ View and post usenet messages directly from http://www.ExcelForum.com/ |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Glad it worked!
Keep on Exceling... -- sb "Dillonstar" wrote in message ... Thanks for the advice, does exactly what I wanted... TVM ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~ View and post usenet messages directly from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hiding a ComboBox with a Checkbox | Excel Worksheet Functions | |||
Controling the Worksheet_Change Event? | Excel Discussion (Misc queries) | |||
controling a .xls from another .xls | New Users to Excel | |||
Controling navagation of a form | Excel Discussion (Misc queries) | |||
Controling Acrobat PDFs | Excel Discussion (Misc queries) |