Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi guys, Two specific combo boxes, cmbhardwarecat and cmbprintercat. If cmbhardwarecat = printer then show cmbprintercat (including lable: lblprintercat) otherwise hide. trying to work out why this isn't working: Code: -------------------- Private Sub cmbprintercat_Change() If Not cmbHardwarecat.Value = "Printer" Then cmbprintercat.Visible = False lblprintercat.Visible = False Else If cmbHardwarecat.Value = "Printer" Then cmbprintercat.Visible = True lblprintercat.Visible = True End If End If End Sub -------------------- Any ideas would be much apprciated. -- harpscardiff ------------------------------------------------------------------------ harpscardiff's Profile: http://www.excelforum.com/member.php...o&userid=25960 View this thread: http://www.excelforum.com/showthread...hreadid=541063 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hide combo box | Excel Discussion (Misc queries) | |||
Hide Combo Boxes | Excel Worksheet Functions | |||
In Excel I need to set up a combo box based on another combo box. | Excel Discussion (Misc queries) | |||
Combo box values based on other combo box value | Excel Programming | |||
Combo Box - Hide Combo Box w/Check Box | Excel Programming |