Draws text on a form.
'Assembly: System.Drawing.dll
'Assembly: System.Windows.Forms.dll
'Namespace: System
'Namespace: Microsoft.VisualBasic
'Namespace: System.Drawing
'Namespace: System.Windows.Forms
'Dim text AS String = ""hello""
'Dim form AS System.Windows.Forms.Form = "Me"
Dim drawFormat As New StringFormat()
Using formGraphics As Graphics = form.CreateGraphics(), _
drawFont As New System.Drawing.Font(FontName, FontSize), _
drawBrush As New SolidBrush(color)
formGraphics.DrawString(text, drawFont, drawBrush, _
Xlocation, Ylocation, drawFormat)
End Using