|
Imports System
Imports System.Data
Imports System.Windows.Forms
Imports System.Drawing
Public Class MainClass
Shared Sub Main()
Dim dlgFont As System.Windows.Forms.FontDialog
dlgFont = New System.Windows.Forms.FontDialog
‘dlgFont.Font = set your font here
If dlgFont.ShowDialog() = DialogResult.OK Then
Console.WriteLine( dlgFont.Font )
Console.WriteLine( dlgFont.Color )
End If
End Sub
End Class
|
Posted in Uncategorized |
This entry was posted
on Saturday, January 24th, 2009 at 1:35 pm and is filed under Uncategorized.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.