hi all,
I'd like to learn how to modify the Font of some control
(command,label,text) while a program is running
I tried to affect a value by Command1.font ="&value&
but it doesn't have any effect
thx !!
Gilles
Mike Williams - 30 May 2004 18:05 GMT
> I'd like to learn how to modify the Font of some
> control (command,label,text) while a program is
> running I tried to affect a value by Command1.font
> ="&value& but it doesn't have any effect
Command1.Font.Name = "Times New Roman"
Command1.Font.Bold = True
Command1.Font.Size = 10
Command1.Font.Italic = True
Mike