Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text and Image in Menu

Status
Not open for further replies.

bitech

Programmer
May 19, 2001
63
0
0
US
I wonder if anyone knows a way to allow my user to select whether or not they want the icons I created to show just the Image Or Text or Image and Text. If there is a way to program that in visual basic, where I can setup a form that asks them those questions, I'd appreciate the help.
 
Tell ya the truth, the easiest way to do this is to just make two toolbars and switch between them. That's what all the programs really do.

Code:
TBSize = Msgbox("Do you want TEXT with your icons?", vbYESNO, "Fancy or plain?")

if tbSize = vbYes then
Myobject.Toolbar = XXXX
else ....
MyObject.Toolbar = YYYY
end if

"Remember, you're unique - just like everyone else"
Feel free to visit another free Access forum:
or my site,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top