I have a subform with a command button. I want the caption on the command button to change depending on the value in a text box. I have tried on current, on load, on open, etc... i get the same message - Method or data member not found.
My code is simple:
If Me.Status = 1 Then
Me.btnNewCourtesyCall.Caption = "Click here to make a Courtesy Call"
Else
Me.btnNewCourtesyCall.Caption = "No calls to make"
End If
Thanks in advance for any insight.
My code is simple:
If Me.Status = 1 Then
Me.btnNewCourtesyCall.Caption = "Click here to make a Courtesy Call"
Else
Me.btnNewCourtesyCall.Caption = "No calls to make"
End If
Thanks in advance for any insight.