B
Brian Henry
Hi, I am trying to build a font style like this
Dim currStyle As Drawing.FontStyle
currStyle = Drawing.FontStyle.Regular
currStyle += Drawing.FontStyle.Bold
but of course thats an implicit conversrion from integer to
system.drawing.fontstyle, how would you correct this problem? thanks
Dim currStyle As Drawing.FontStyle
currStyle = Drawing.FontStyle.Regular
currStyle += Drawing.FontStyle.Bold
but of course thats an implicit conversrion from integer to
system.drawing.fontstyle, how would you correct this problem? thanks