Results 1 to 4 of 4

Thread: Print

  1. #1
    Guest
    I want to print without using Data Report.
    How can I do?

  2. #2
    Frenzied Member mlewis's Avatar
    Join Date
    Sep 2000
    Posts
    1,226
    What do you want to print?
    M. Lewis
    Pi-Q Software
    How many mouse clicks does it take to cook breakfast?

    Blargh! I am dead!

  3. #3
    Guest

    Print

    I want to print a filtered ado recordset result

  4. #4
    Frenzied Member mlewis's Avatar
    Join Date
    Sep 2000
    Posts
    1,226
    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
    M. Lewis
    Pi-Q Software
    How many mouse clicks does it take to cook breakfast?

    Blargh! I am dead!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width