I have a continous Form "frmMemo"
I have a yes/no check box "WordsCk" on frmMemo.
I place a Toggle Button "Toggle23" bound to WordsCk.
I placed the code below in the AfterUpdate() of frmMemo
hoping that Toggle23 Caption would change depending on WordsCk in each record.
Private Sub Form_AfterUpdate()
If WordsCk = -1 Then
Toggle23.Caption = "Selected"
Else
Toggle23.Caption = "Cleared"
End If
End Sub
The problem is that all of the Toggle Captions for all Records change at the same time.
ie. they are all either "Selected" or "Cleared"
How can I make this work?
Accel45
I have a yes/no check box "WordsCk" on frmMemo.
I place a Toggle Button "Toggle23" bound to WordsCk.
I placed the code below in the AfterUpdate() of frmMemo
hoping that Toggle23 Caption would change depending on WordsCk in each record.
Private Sub Form_AfterUpdate()
If WordsCk = -1 Then
Toggle23.Caption = "Selected"
Else
Toggle23.Caption = "Cleared"
End If
End Sub
The problem is that all of the Toggle Captions for all Records change at the same time.
ie. they are all either "Selected" or "Cleared"
How can I make this work?
Accel45