This is something that has been puzzling me for quite a while:

In a nut shell, I creat a line at runtime like this:

Private Sub Command1_Click()
ang1 = 3 * 100
ang2 = ang1 * 3.1416 / 180
'here is where I create the line
Form1.Line (3430, 3000)-Step(Cos(ang1 + ang2 / 2) * 1320, Sin(ang1 + ang2 / 2) * 1320)
End Sub

Now, I'm wondering how I can make the above line white rather than black - which is the default.

Can this be done? Thanks in advance!