VB Code:
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs) Dim g As Graphics = e.Graphics g.DrawString("Kovan", New Font("Arial", 40), New SolidBrush(Color.Gray), 55, 55) 'SHADOW g.DrawString("Kovan", New Font("Arial", 40), New SolidBrush(Color.Black), 50, 50) 'ORIGINAL TEXT End Sub 'put that in your form


Reply With Quote