Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
* --- In the CheckBox 1 Valid Method ---
IF This.Value = 1
* --- Checked ---
ThisForm.Check2.Enabled = .F.
ThisForm.Check3.Enabled = .T.
ThisForm.Check4.Enabled = .F.
ThisForm.Text1.Enabled = .F.
ThisForm.Text2.Enabled = .T.
ELSE
* --- Not Checked ---
ThisForm.Check2.Enabled = .T.
ThisForm.Check3.Enabled = .F.
ThisForm.Check4.Enabled = .T.
ThisForm.Text1.Enabled = .T.
ThisForm.Text2.Enabled = .T.
ENDIF