L
larochy
Hi.....I have a hidden command button and when I choose the value "UNCR-E3"
from a combo box, I want the command button to be visible. Here's the code
I'm currently using and it's not working, any suggestions?
Private Sub SKU_AfterUpdate()
If Me.SKU.Value = "UNCR-E3" Then
Me.Command58.Visible = True
Else
Me.Command58.Visible = False
End If
End Sub
from a combo box, I want the command button to be visible. Here's the code
I'm currently using and it's not working, any suggestions?
Private Sub SKU_AfterUpdate()
If Me.SKU.Value = "UNCR-E3" Then
Me.Command58.Visible = True
Else
Me.Command58.Visible = False
End If
End Sub