setting font at runtime

  • Thread starter Thread starter Harley
  • Start date Start date
H

Harley

how do you set the font for a label control in VB.NET/ASP.NET?
im trying:
label1.font = new system.drawing.font ("Arial",10)
as stated in the sample code, but compiler says "property font is
read-only".
 
use the attributes :

me.Label1.Style["FONT-FAMILY"] = "Wingdings";

Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
 
Back
Top