C
Chris
Is it possible to make a command button visible only if one particular check
box is checked..?
Lap
box is checked..?
Lap
Gerald said:In the AfterUpdate event handler of the Check box try
something along the following lines
If {yourCheckBoxName} Then
{yourCommandButtonName}.Visible = True
Else
{yourCommandButtonName}.Visible = False
End If
Hope That Helps
Gerald Stanley MCSD
Bas Cost Budde said:...which can be abbreviated to
yourcommandbutton.visible = yourcheckboxname.value
TC said:which can be further abbreviated to:
yourcommandbutton.visible = yourcheckboxname
You may feel so, user interface guidelines tell a different story. ForLapchien said:From the users POV if teh checkbox is ticked (it means that the 'job' is
'commercial') a command button becomes visible, which when pressed sends a
fax requisition to the customer... I don't want the fax button to show
unless it's a commercial job!