Hey guys I have a text box, and I was wondering if it said something, how can a menu option not be shown?
like you see on a program where file or help or something is?
Thanks!
thanks!
Printable View
Hey guys I have a text box, and I was wondering if it said something, how can a menu option not be shown?
like you see on a program where file or help or something is?
Thanks!
thanks!
if text1 = " Remove Item" then
mnuName.Visible = False 'the name of your menu item
end if
thanks!