How can I change the script of the font for a form if it is not changing?
-
Hi, I am using vb.net with VS2008. I tried to change the font of the Form. However, I was not able to change the script of the font to "central european" in the font dialog. When I re-open the font dialog, it still show the "Turkish" instead of "Central European". If you have any idea how to change the font and the font script for a specific control in the form, Would you please let me know. Thanks.
What a curious mind needs to discover knowledge is noting else than a pin-hole.
-
Hi, I am using vb.net with VS2008. I tried to change the font of the Form. However, I was not able to change the script of the font to "central european" in the font dialog. When I re-open the font dialog, it still show the "Turkish" instead of "Central European". If you have any idea how to change the font and the font script for a specific control in the form, Would you please let me know. Thanks.
What a curious mind needs to discover knowledge is noting else than a pin-hole.
Dim family_name As String = "YourFontNameHere" Dim font_size As Single = 10 Dim font_style As FontStyle = FontStyle.Bold Or Or FontStyle.Italic Or FontStyle.Underline Or FontStyle.Strikeout Dim MyFont As New Font(family_name, font_size, font_style) Me.Font = MyFont