VB doesn't seem to be very helpful with drawing.
How do I fill a rectangle with a RGB color?
Picture1.Line (x1, y1)-(x2, y2), Color, BF
And is it possible to insert a rotated a rectangle?
Printable View
VB doesn't seem to be very helpful with drawing.
How do I fill a rectangle with a RGB color?
Picture1.Line (x1, y1)-(x2, y2), Color, BF
And is it possible to insert a rotated a rectangle?
Create a colour using the RGB function and pass it to the line method.Quote:
How do I fill a rectangle with a RGB color?
Line (0, 0)-(1000, 1000), RGB(0, 0, 255), BF