I'm trying to diplay [AA_change] field value as a button caption on a continues bound form. (Each record has a button).
The following code displays the same caption for all of the records on the form, which is not correct. Please suggest something. Also, please let me know if this is not possible to achieve?
Thanks
The following code displays the same caption for all of the records on the form, which is not correct. Please suggest something. Also, please let me know if this is not possible to achieve?
Thanks
Code:
Private Sub Form_Load()
If Nz([AA_change], "") <> "" Then
Me.btnAA_change.Caption = [AA_change]
Else
End If
End Sub