How do you apply multiple font styles to text?
System.Drawing.Font MyFont = new System.Drawing.Font( thisTempLabel.LabelFont, ((float)thisTempLabel.f
System.Drawing.Font MyFont = new System.Drawing.Font( thisTempLabel.LabelFont, ((float)thisTempLabel.fontSize), FontStyle.Bold | FontStyle.Italic, // + obviously doesn't work, but what am I meant to do? GraphicsUnit.Pixel );
Maybe you wanted to use the OR operator (|)
|