|
-
Sep 18th, 2000, 07:33 AM
#1
I want to print without using Data Report.
How can I do?
-
Sep 18th, 2000, 08:30 AM
#2
Frenzied Member
What do you want to print?
-
Sep 18th, 2000, 08:53 AM
#3
Print
I want to print a filtered ado recordset result
-
Sep 19th, 2000, 04:50 AM
#4
Frenzied Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|