Hi All,
I have a “Select Case” method in my DB and I want to look for anything containing a name. I am trying to do this:
Select Case strName
Case “*anyname*”
me.command123.visible = true
Case Else
me.command123.visible = false
End Select
When I run the code, it does not catch the name, even though it contains what would be “anyname” above. What am I doing wrong???
Thanks,
Mark