I have the code for a line,
Picture1.Line (200, 300)-(500, 300)
does anybody know how to make it into a dotted line.
also I have a circle,
Picture1.Circle (-7, 30), 2,
can anybody tell me how to fill the circle with colour.
Thanks for any help.
Printable View
I have the code for a line,
Picture1.Line (200, 300)-(500, 300)
does anybody know how to make it into a dotted line.
also I have a circle,
Picture1.Circle (-7, 30), 2,
can anybody tell me how to fill the circle with colour.
Thanks for any help.
First question:
Second question:Code:MyPictureBox.DrawStyle = vbDot
MyPictureBox.Line (200, 300)-(500, 300)
Enjoy! :rolleyes:Code:MyPictureBox.FillColor = vbRed
MyPictureBox.FillStyle = vbFSSolid
MyPictureBox.Circle (-7, 30), 2