I am getting an error on this code:
Code:
Dim fntfam As String = ComboBox1.Text
Dim fntSize As Single = CInt(ComboBox2.Text)

Label1.Font = New System.Drawing.Font(fntfam, fntSize!, Label1.Font.Style, GraphicsUnit.Point)
The error is:
Code:
Font 'Vivaldi' does not support style 'Regular'
I am not finding anything related to visual studio 2005 relating to this question, google gives me all results that are system wide. This only does this in my program when I run it. Vivaldi works in all other office programs. What am I doing incorrectly??

As always, thank you all for you assistance...

D