Results 1 to 2 of 2

Thread: two Data Source in One Data report

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2009
    Posts
    11

    two Data Source in One Data report

    is it possible to use two data source in one data report?
    if yes, how is it?

    thanks,
    ishee

  2. #2
    PowerPoster
    Join Date
    Sep 2005
    Location
    Modesto, Ca.
    Posts
    5,515

    Re: two Data Source in One Data report

    If you mean two data sources at the same time, then no.

    But you can set the reports datasource property just prior to running the report with any matching data source.
    Code:
    set datareport1.Datasource = rs1
    datareport1.Show vbModal
    
    set datareport1.Datasource = rs2
    datareport1.Show

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