Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
Dim n_font As New Font(CStr(ListBox1.SelectedItem), 20, FontStyle.Regular) '폰트미리보기에 있는 글자를 선택한 폰트로 변경
TextBox1.Font = n_font
End Sub
End Class
Try Dim n_font As New Font(CStr(ListBox1.SelectedItem), 20, FontStyle.Regular) '폰트미리보기에 있는 글자를 선택한 폰트로 변경 TextBox1.Font = n_font Catch ex As Exception MsgBox(ex.Message) End Try
* 지원하지 않는 폰트 적용시 에러에 대한 예외처리
Try
Dim n_font As New Font(CStr(ListBox1.SelectedItem), 20, FontStyle.Regular) '폰트미리보기에 있는 글자를 선택한 폰트로 변경
TextBox1.Font = n_font
Catch ex As Exception
MsgBox(ex.Message)
End Try
이 댓글을