mbflgizt > 05-03-11, 10:01 PM
Noname > 06-03-11, 10:47 AM
Private Sub chkEnable_Click()
If IsNull(chkEnable) Or chkEnable = False Then
content.Enabled = False
Else
content.Enabled = True
End If
End Sub
Private Sub Form_Load()
If IsNull(chkEnable) Or chkEnable = False Then
content.Enabled = False
Else
content.Enabled = True
End If
End Sub