galneweinhaw
June 9th, 2004, 01:37 PM
(see attached pic)
Right now, when any of the "Baked" is ticked or unticked all the buttons enable/disable.... how do I make it so each button responds to it's own record's tick box?
here is the code I used in AfterUpdate:
Dim boolBaked As Boolean
boolBaked = Me!Baked
If (boolBaked = True) Then
Me!btnEditBakeDetails.Enabled = True
End If
If (boolBaked = False) Then
Me!btnEditBakeDetails.Enabled = False
End If
Right now, when any of the "Baked" is ticked or unticked all the buttons enable/disable.... how do I make it so each button responds to it's own record's tick box?
here is the code I used in AfterUpdate:
Dim boolBaked As Boolean
boolBaked = Me!Baked
If (boolBaked = True) Then
Me!btnEditBakeDetails.Enabled = True
End If
If (boolBaked = False) Then
Me!btnEditBakeDetails.Enabled = False
End If