Click to See Complete Forum and Search --> : change fonts for all items


luel
June 14th, 2001, 05:32 PM
need help..

i need a code or function that changes all the fonts size and name.... on all items including grids




thanks is advance
luel


Life is full of treachery and lies...

luel
June 14th, 2001, 05:32 PM
need help..

i need a code or function that changes all the fonts size and name.... on all items including grids




thanks is advance
luel


Life is full of treachery and lies...

luel
June 14th, 2001, 05:32 PM
need help..

i need a code or function that changes all the fonts size and name.... on all items including grids




thanks is advance
luel


Life is full of treachery and lies...

shree
June 14th, 2001, 07:26 PM
Use a For ... Each loop in your Form Load as follows:


dim aControl as Control
on error resume next
for each aControl in me.Controls
aControl.Font.Size = 12
next
on error Goto 0