Hi flybird,
You can use the Graphics object to draw lines or any shape for that matter.
Eg. the following code in the form paint event draws a black line that
is 90 pix wide:
private void Form1_Paint(object sender,
System.Windows.Forms.PaintEventArgs e)
{
e.Graphics.DrawLine(new Pen(Color.Black, 1), 10, 10, 100, 10);
}
HTH,
APG