J
Jimmy
I have the following problem:
In a form I have a text-box named "Akyra-reason" and a check box named
"Akyra".
What I want is whenever I enter any data at the text-box "Akyra-reason" I
want the check box "Akyra" to become clicked.
I tried in the after update of "Akyra-reason" the following but didn't work:
Private Sub AKYRA_REASON_AfterUpdate()
If Me![AKYRA-REASON] = Not Null Then
Me![AKYRA] = "-1"
End If
End Sub
I also tried....
Private Sub AKYRA_REASON_AfterUpdate()
If Me![AKYRA-REASON] = Not Null Then
Me![AKYRA] = "True"
End If
End Sub
But also nothing!
Can someone please help me.
Thank You in advance
Jimmy
In a form I have a text-box named "Akyra-reason" and a check box named
"Akyra".
What I want is whenever I enter any data at the text-box "Akyra-reason" I
want the check box "Akyra" to become clicked.
I tried in the after update of "Akyra-reason" the following but didn't work:
Private Sub AKYRA_REASON_AfterUpdate()
If Me![AKYRA-REASON] = Not Null Then
Me![AKYRA] = "-1"
End If
End Sub
I also tried....
Private Sub AKYRA_REASON_AfterUpdate()
If Me![AKYRA-REASON] = Not Null Then
Me![AKYRA] = "True"
End If
End Sub
But also nothing!
Can someone please help me.
Thank You in advance
Jimmy