MikeGeitner
Technical User
Hello,
I'm trying to make a command button on a form disappear if the user selects "CONT.TEV" from the list. The combo box list values are from this query in the combobox properties / row source:
SELECT [CUSTOMER NAME].[ID], [CUSTOMER NAME].[CUSTOMER CODE] FROM [CUSTOMER NAME];
The code I've been trying is this:
Private Sub CboCust_AfterUpdate()
If Me.CboCust = "CONT.TEV" then
Me.CmdPrintLotTag.visible = false
else
Me.CmdPrintLotTag.visible = true
End if
End Sub
This code does'nt work on this combo box, but will if I use it on a text box.
Any help for this newbie is greatly appreciated.
Thanks,
Mike
I'm trying to make a command button on a form disappear if the user selects "CONT.TEV" from the list. The combo box list values are from this query in the combobox properties / row source:
SELECT [CUSTOMER NAME].[ID], [CUSTOMER NAME].[CUSTOMER CODE] FROM [CUSTOMER NAME];
The code I've been trying is this:
Private Sub CboCust_AfterUpdate()
If Me.CboCust = "CONT.TEV" then
Me.CmdPrintLotTag.visible = false
else
Me.CmdPrintLotTag.visible = true
End if
End Sub
This code does'nt work on this combo box, but will if I use it on a text box.
Any help for this newbie is greatly appreciated.
Thanks,
Mike