I have a form for my clients and a subform for the Data that I am entering for that client. Since I am not entering Data for All the clients I have a Check Box in my form to mark the client as having data in the subform. I was thinking the following program would work...
Private Sub chkHypLnk_AfterUpdate()
If IsNull([HypLnk-sfrm].[HypLnk]) Then
Exit Sub
Else
chkHypLnk = True
End If
End Sub
The Check box is called "chkHypLnk" and in my subform called "HypLnk-sfrm" I have a Hyperlinked Text Box called [HypLnk] When I have placed a Hyperlink in the Subform text box I am wanting the Check Box in my form to become True. Am I going about this the right way?
Thanks for any and all your help
RobotMush (Technical User) Self Taught
Private Sub chkHypLnk_AfterUpdate()
If IsNull([HypLnk-sfrm].[HypLnk]) Then
Exit Sub
Else
chkHypLnk = True
End If
End Sub
The Check box is called "chkHypLnk" and in my subform called "HypLnk-sfrm" I have a Hyperlinked Text Box called [HypLnk] When I have placed a Hyperlink in the Subform text box I am wanting the Check Box in my form to become True. Am I going about this the right way?
Thanks for any and all your help
RobotMush (Technical User) Self Taught