Rob
Dec 9th, 1999, 06:42 AM
I want to draw a graphic like a triangle and then fill it with a color. Yet, I don't want to use PrintForm or any other method that prints the output in pixels. I want the output to be in twips. Example of code:
Private Sub Print_Triangle()
Printer.ScaleMode = 1 'twips
Printer.Line (2000,0)-(3000,3000)
Printer.Line -(0,3000)
Printer.line -(2000,0)
'Next, Fill the triangle with a color, such as red.
End Sub
Private Sub Print_Triangle()
Printer.ScaleMode = 1 'twips
Printer.Line (2000,0)-(3000,3000)
Printer.Line -(0,3000)
Printer.line -(2000,0)
'Next, Fill the triangle with a color, such as red.
End Sub