Alright hopefully this will be my last problem. I have the search going, and if a user enters a item number it will bring them all up with a list of serial numbers they can choose. When they choose a serial number it should bring up all the info for that serial number.
One of the items that needs to be updated is a checkbox. In normal searches the checkbox works, however in the list change it does not.
Here is the code:
The field in the table is a yes/no field. When I enter it into a textbox and search it works, it's just when I try to change a list.
Thanks.
One of the items that needs to be updated is a checkbox. In normal searches the checkbox works, however in the list change it does not.
Here is the code:
Code:
strSQL = "SELECT * FROM PrintTable WHERE SerialNum = " & Me!SNsearch
If rs!PartMod = True Then
Me!modbox = True
Else
Me!modbox = False
End If
The field in the table is a yes/no field. When I enter it into a textbox and search it works, it's just when I try to change a list.
Thanks.