I am using an FontDialog to allow the user to select a font, How should it get the font Style form the selected Font.
Currently i am using
which returns an Integervb Code:
Dim f As New FontDialog If f.ShowDialog = Windows.Forms.DialogResult.OK Then Me.Lbl.Text = f.Font.Style.ToString End If





Reply With Quote