I want to print without using Data Report.
How can I do?
Printable View
I want to print without using Data Report.
How can I do?
What do you want to print?
I want to print a filtered ado recordset result
Try looping through the recordset's contents:
For I = 1 To RS.RecordCount
RS.Move I
For J = 1 To RS.Fields.Count
Printer.Print RS.Fields(J) & vbTab;
Next J
Printer.Print
Next I