Hide Combobox

L

Lakeuk

Is is possible to hide a combobox based on a multipage being selected.

Thanks
Dave
 
K

keepITcool

Note multipage numbering is 0 based..

This will hide the combo if the 2nd page is selected
Private Sub Multipage1_Change()
ComboBox1.Visible = (MultiPage1.Value <> 1)
End Sub


keepITcool

< email : keepitcool chello nl (with @ and .) >
< homepage: http://members.chello.nl/keepitcool >
 
L

Lakeuk

Note multipage numbering is 0 based..
This will hide the combo if the 2nd page is selected
Private Sub Multipage1_Change()
ComboBox1.Visible = (MultiPage1.Value <> 1)
End Sub
Thanks exactly what I was looking for.

Thanks, Dave
 
Top