Hide Combobox

  • Thread starter Thread starter Lakeuk
  • Start date Start date
L

Lakeuk

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

Thanks
Dave
 
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 >
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top