Hi
i have a picture box and i have drawn a grid using e.graphics, like ruler lines.
does any one know how i can change the code i have so it gives me dashed lines or do i have to manually draw each dash.
heres my code:
Dim x = 30
Do While x < w
e.Graphics.DrawLine(p1, x, 0, x, h)
e.Graphics.DrawLine(p1, 0, x, w, x)
x = x + 30
Loop
thanks for any one who gives info
i have a picture box and i have drawn a grid using e.graphics, like ruler lines.
does any one know how i can change the code i have so it gives me dashed lines or do i have to manually draw each dash.
heres my code:
Dim x = 30
Do While x < w
e.Graphics.DrawLine(p1, x, 0, x, h)
e.Graphics.DrawLine(p1, 0, x, w, x)
x = x + 30
Loop
thanks for any one who gives info