how can i draw a line on a form....is there is any control like shape (in vb)....
anand
Printable View
how can i draw a line on a form....is there is any control like shape (in vb)....
anand
In the Forms paint event
Dim pen As New Pen(Color.Red)
e.Graphics.DrawLine(pen, 0, 0, Me.ClientSize.Width, Me.ClientSize.Height)
http://www.vbforums.com/showthread.p...hreadid=246939
Just getting the word out...lol.