Private Sub mInkObject_Painted(ByVal sender As Object, ByVal e As PaintEventArgs)
Const X As Integer = 12
Const Y As Integer = 12
Const COMPANY As String = "Graphic Design Institute"
Const WEB_SITE As String = "http://www.graphicdesigninstitute.com/"
Dim cFont As Font = New Font("Arial", 18)
Dim wFont As Font = New Font("Arial", 9)
Dim cSize As SizeF = e.Graphics.MeasureString(COMPANY, cFont)
e.Graphics.DrawString(COMPANY, cFont, Brushes.Wheat, X, Y)
e.Graphics.DrawString(WEB_SITE, wFont, Brushes.SlateGray, X, cSize.Height + Y)
End Sub