Article ID: 138920
Article Last Modified on 2/11/2000
IF ThisForm.Check1.Enabled=.t. and ThisForm.Check1.Value=1
ThisForm.Check2.Enabled=.f.
ThisForm.Check3.Enabled=.f.
ENDIF
IF ThisForm.Check2.Enabled=.t. and ThisForm.Check2.Value=1
ThisForm.Check1.Enabled=.f.
ThisForm.Check3.Enabled=.f.
ENDIF
IF ThisForm.Check3.Enabled=.t. and ThisForm.Check3.Value=1
ThisForm.Check1.Enabled=.f.
ThisForm.Check2.Enabled=.f.
ENDIF
IF ThisForm.Check1.Enabled=.t. and ThisForm.Check1.Value=0
ThisForm.Check2.Enabled=.t.
ThisForm.Check3.Enabled=.t.
ENDIF
IF ThisForm.Check2.Enabled=.t. and ThisForm.Check2.Value=0
ThisForm.Check1.Enabled=.t.
ThisForm.Check3.Enabled=.t.
ENDIF
IF ThisForm.Check3.Enabled=.t. and ThisForm.Check3.Value=0
ThisForm.Check1.Enabled=.t.
ThisForm.Check2.Enabled=.t.
ENDIF
ThisForm.Refresh
111918 How to Enable One Check Box While Disabling the Others
Additional query words: VFoxWin
Keywords: kbcode KB138920