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.
Sub Option87_OnClick()
End Sub
Is this Access or .NET?AT76 said:I have created an option box (Option87)in my access form and would like to make it work as follows:
Private Sub MychkBox_AfterUpdate()
Select Case Me.MychkBox.Value
Case -1
Me.MyTextBox = Now
Case 0
Me.MyTextBox = ""
End Select
End Sub
'=====================================
Private Sub MychkBox_AfterUpdate()
If Me.MychkBox.Value = True Then
Me.MyTextBox = Now
Else
Me.MyTextBox = ""
End If
End Sub