
printing without crystal report or data report for non data base reports
Just use the Printer Object methods (Print, Line, Circle etc):
Printer.ScaleMode = vbInches
Printer.FontName = "Times New Roman"
Printer.FontSize = 12
Printer.FontBold = True
Printer.Line (0.5, 0.5)-Step(1.6, 0.2), , B
Printer.CurrentX = 0.6
Printer.CurrentY = 0.5
Printer.Print "Some text in this box"
Printer.EndDoc
Mike
Quote:
> hi all,
> i want to print my applications through visual basic codes in which i want
> to places various rectangles, tables and texts etc. are there any tools to
> print non database reports. how can i code these print reports using rtf
and
> printer object etc.
> DAVE