Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IF CONDITION TO HIDE FIELD REQ

Status
Not open for further replies.

Malta393

Technical User
Apr 8, 2002
18
0
0
EU
I have a form which as two yes/no boxes.1 is called Cleared and the other called Order Paid Status(OPS). If the cleared box and OPS box is marked yes I need another text box to become visible on the form for the user to complete

Any ideas on how i set about this


Thanks in anticipation

Kaz [2thumbsup]
 
via VBA

if checkbox = true then
if checkbox2 = true then
textbox.visible = true
end if
end if

kinda like that

Vince
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top