How can I show Two browse windows of different tables at the same time, I
tried following.

Define window win1 from 1,1 to 20,39
Define window win2 from 1,40 to 20,70
Activate window win1
Use Rent
brow in Window win1

Activate window win2
Use Contract
brow in Window win2

But I only see one brow window at a time, where am I mistaken, please help ?

Best Regards,

Luqman

Re: Displaying Two Browse Windows on Same Screen in Foxpro 2.6 Dos ? by John

John
Sun May 08 17:50:18 CDT 2005

Use Rent
brow
SELECT 0
Use Contract
brow

If you don't select another work area before the second USE your first table
and it's browse window are closed by the second use.

John

"Luqman" <pearlsoft@cyber.net.pk> wrote in message
news:OkiQ3PBVFHA.3292@TK2MSFTNGP14.phx.gbl...
> How can I show Two browse windows of different tables at the same time, I
> tried following.
>
> Define window win1 from 1,1 to 20,39
> Define window win2 from 1,40 to 20,70
> Activate window win1
> Use Rent
> brow in Window win1
>
> Activate window win2
> Use Contract
> brow in Window win2
>
> But I only see one brow window at a time, where am I mistaken, please help
> ?
>
> Best Regards,
>
> Luqman
>
>



Re: Displaying Two Browse Windows on Same Screen in Foxpro 2.6 Dos ? by TonySper

TonySper
Sun May 08 17:48:35 CDT 2005

Try
Select 0
use database1
select 0
use database2
select database1
browse nowait
select database2
browse nowait

Should do it.
TonySper

"Luqman" <pearlsoft@cyber.net.pk> wrote in message
news:OkiQ3PBVFHA.3292@TK2MSFTNGP14.phx.gbl...
How can I show Two browse windows of different tables at the same
time, I
tried following.

Define window win1 from 1,1 to 20,39
Define window win2 from 1,40 to 20,70
Activate window win1
Use Rent
brow in Window win1

Activate window win2
Use Contract
brow in Window win2

But I only see one brow window at a time, where am I mistaken, please
help ?

Best Regards,

Luqman