Hello,

If I use the following code and I select the font 'Brush Script MT', I get an error that the font does not support Bold.
However, when I use this font in MS Word, I can make it Bold .

Code:
Private Sub btnBold_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBold.Click

        If btnBold.CheckState = CheckState.Checked Then
            btnBold.CheckState = CheckState.Unchecked
            _FontStyle = FontStyle.Regular


        Else
            btnBold.CheckState = CheckState.Checked
            _FontStyle = FontStyle.Bold

        End If
        _FontSize = 12

        _FontName = lbxFonts.SelectedItem

        Dim _NewFont As New Font(_FontName, _FontSize, _FontStyle)


    End Sub
So apparantly it is possible to make this font Bold. Does anybody have a solution for this problem?

Thanks!