Re: Attn: David C.
- Posted by "Cuny, David" <David.Cuny at DSS.CA.GOV> Aug 30, 1999
- 414 views
Terry wondered: > Is it possible to *globally* change the font that > a windows prog uses so that all windows\controls > opened by the prog all use the same font? (i.e. > for text in edit controls, button text etc.) I'd suggest making your own version of Create, such as: function Create( ... ) -- create, and set font for control integer id -- create the control id = create( ... ) -- set the font for the control setFont( id, "Verdana", 10, Normal ) return id end function Hope this helps! -- David Cuny