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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Font Size in MENUs

Status
Not open for further replies.

harryjr

Programmer
Jan 4, 2001
27
US
Is there any way to change the DEFAULT Font size of MENUs
created with the MENU WIZARD?

Harry
 
Hello.

Yes, there is a way to do this. You should exploit the fact the menu wizard is generating the .mpr file.

In fact, all it's missing it's the supplimentary clause 'FONT' to the DEFINE BAR command. But the command looks like this: DEFINE BAR bla bla bla MESSAGE 'messagetext'.

So, the menu wizard is reading the message textbox. And the complete command you need should look like this one:

DEFINE BAR bla bla bla MESSAGE "text" FONT "Tahoma",10.

===========================================================

Got the idea?

You should put in the message textbox for that bar the following:

"text" FONT "Tahoma", 12 COLOR RGB(255,255,255,0,0,0) STYLE 'B'


And you'll have exactly what you'll need.

Hope this helps. Grigore Dolghin
Class Software
Bucharest, Romania
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top