printing without crystal report or data report for non data base reports 
Author Message
 printing without crystal report or data report for non data base reports

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



Sun, 09 Dec 2001 03:00:00 GMT  
 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



Sun, 09 Dec 2001 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Printing Crystal Reports without Crystal Control ActiveX or Crystal Reports API call

2. Using Crystal Report without a data base

3. Print a report via crystal reports without print dialogue displaying

4. Crystal Reports or Data Reports

5. VB6 Data Reports or of Crystal Reports?

6. Using an existing crystal report, but programmatically redirecting where/how the report gets its data

7. Crystal Report vs MS Data Report Designer

8. refresh data in crystal reports report

9. Crystal not saving sub report data with report

10. Problem refreshing report data in crystal reports 4.6

11. Crystal Report Data Report

12. VB 6 Data report and crystal Report

 

 
Powered by phpBB® Forum Software