visable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I got myself stuck
this is what I have

Me.[Command254].Visible = Nz(Me.[Under Claudia], False)
Me.[Command254].Visible = Nz(Me.[Under Teresa], False)
Me.[Print TA].Visible = Nz(Me.[Under Claudia], True)
Me.[Print TA].Visible = Nz(Me.[Under Teresa], True)
Under Claudia and Under Teresa are check boxes.
If they are true then command254 visiable
If False then Print TA Visable.
Please help

Thanks
Chey
 
Try

Me.[Command254].Visible = (Nz(Me.[Under Claudia], False) And Nz(Me.[Under
Teresa], False))
Me.[Print TA].Visible = (Nz(Me.[Under Claudia], True) And Nz(Me.[Under
Teresa], True))
 

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

Similar Threads

Want to alter code with out screwing up 5
command button 3
Required Field 7
visable 3
Visable 12
On Current 5
hiding form 10
Keep rows and columns in sequence 5

Back
Top