Hi,

I am using VFP9. I have two tables, both are unrelated. Table1 with 3
records & TABLE2 with 3 records. I need to print in my report:

TABLE1 TITLE
Table1 Record1
Table1 Record2
Table1 Record3

TABLE2 TITLE
Table2 Record1
Table2 Record2
Table2 Record3

How can I print the records of two tables in a single VFP9 Report?

Thanks in advance.

Regards,
Derek

Re: VFP9 Multiple table Report Question by Anders

Anders
Tue May 10 13:13:47 CDT 2005

SELECT * FROM Table1 UNION ALL SELECT * FROM Table2 INYO CURSOR Query1
REPORT FORM xxx

"julyderek@hotmail.com" <burzinb@gmail.com> wrote in message
news:1115728694.703997.315480@o13g2000cwo.googlegroups.com...
> Hi,
>
> I am using VFP9. I have two tables, both are unrelated. Table1 with 3
> records & TABLE2 with 3 records. I need to print in my report:
>
> TABLE1 TITLE
> Table1 Record1
> Table1 Record2
> Table1 Record3
>
> TABLE2 TITLE
> Table2 Record1
> Table2 Record2
> Table2 Record3
>
> How can I print the records of two tables in a single VFP9 Report?
>
> Thanks in advance.
>
> Regards,
> Derek
>


Re: VFP9 Multiple table Report Question by Paul

Paul
Tue May 10 13:58:10 CDT 2005

I hear that VFP9 an support multiple detail bands in reports. I haven't had
occasion to try it yet, but you should be able to find info in Help.


"julyderek@hotmail.com" <burzinb@gmail.com> wrote in message
news:1115728694.703997.315480@o13g2000cwo.googlegroups.com...
> Hi,
>
> I am using VFP9. I have two tables, both are unrelated. Table1 with 3
> records & TABLE2 with 3 records. I need to print in my report:
>
> TABLE1 TITLE
> Table1 Record1
> Table1 Record2
> Table1 Record3
>
> TABLE2 TITLE
> Table2 Record1
> Table2 Record2
> Table2 Record3
>
> How can I print the records of two tables in a single VFP9 Report?
>
> Thanks in advance.
>
> Regards,
> Derek
>