Hide a page in a multi page userform

  • Thread starter Thread starter Ian Mangelsdorf
  • Start date Start date
I

Ian Mangelsdorf

I have set up a multi page user form and wish to have the user select
a range of tests per sample (using check boxes). I would like to have
the corresponding page not visble unless the checkbox. value=true

I have used this code

Private Sub Chk_ff_Click()

If Chk_ff.Value = True Then
SCAL_Data.pg_ff.visable = True
Else: pg_ff.visable = False
End If
End Sub

with pg_ff being the name I have given the secified page and SCAL_data
being the name of the form.

I am getting an object required error.

Any hints would be great

Cheers

ian
 

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