Is is possible to hide a combobox based on a multipage being selected. Thanks Dave
L Lakeuk Jul 5, 2004 #1 Is is possible to hide a combobox based on a multipage being selected. Thanks Dave
K keepITcool Jul 5, 2004 #2 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 keepITcool < email : keepitcool chello nl (with @ and .) > < homepage: http://members.chello.nl/keepitcool >
L Lakeuk Jul 6, 2004 #3 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 Click to expand... Thanks exactly what I was looking for. 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 Click to expand... Thanks exactly what I was looking for. Thanks, Dave