I'm using VFP6 SP5, windows all, local and network computers

I need print using @..,.. say commands at landscape mode

How could I set it programmatically ??

Alkots

Re: landscape mode by Eric

Eric
Wed Dec 01 08:29:01 CST 2004

Hello, alkots!

If you use
SET DEVICE TO PRINTER PROMPT

you can select a different printer orientation and many other printer
settings.
You may also want to look at SYS(1037).
--
Eric den Doop
www.foxite.com - The Home Of The Visual FoxPro Experts - Powered By VFP8



Re: landscape mode by alkots

alkots
Wed Dec 01 08:41:02 CST 2004

Hello Eric

I know about your suggestion, but I don't want users doing this selection

I really want do it programmatically

Alkots



"Eric den Doop" wrote:

> Hello, alkots!
>
> If you use
> SET DEVICE TO PRINTER PROMPT
>
> you can select a different printer orientation and many other printer
> settings.
> You may also want to look at SYS(1037).
> --
> Eric den Doop
> www.foxite.com - The Home Of The Visual FoxPro Experts - Powered By VFP8
>
>
>

Re: landscape mode by Gene

Gene
Wed Dec 01 11:22:49 CST 2004

alkots <alkots@discussions.microsoft.com> wrote:

>I know about your suggestion, but I don't want users doing this selection
>
>I really want do it programmatically

Use the keyboard command to do the selection. It is a bit hokey,
but it does work.

Portrait:
keyboard "{tab}{tab}{tab}{tab}o{enter}" clear
sys(1037) && Kludge: This form will flash, but too bad.

Landscape:
keyboard "{tab}{tab}{tab}{tab}a{enter}" clear
sys(1037) && Kludge: This form will flash, but too bad.

[snip]

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.

Re: landscape mode by alkots

alkots
Wed Dec 01 11:59:05 CST 2004

Hi Gene

It was a good way, instead the form flashed

Thanks

"Gene Wirchenko" wrote:

> alkots <alkots@discussions.microsoft.com> wrote:
>
> >I know about your suggestion, but I don't want users doing this selection
> >
> >I really want do it programmatically
>
> Use the keyboard command to do the selection. It is a bit hokey,
> but it does work.
>
> Portrait:
> keyboard "{tab}{tab}{tab}{tab}o{enter}" clear
> sys(1037) && Kludge: This form will flash, but too bad.
>
> Landscape:
> keyboard "{tab}{tab}{tab}{tab}a{enter}" clear
> sys(1037) && Kludge: This form will flash, but too bad.
>
> [snip]
>
> Sincerely,
>
> Gene Wirchenko
>
> Computerese Irregular Verb Conjugation:
> I have preferences.
> You have biases.
> He/She has prejudices.
>

Re: landscape mode by Mike

Mike
Thu Dec 02 02:04:20 CST 2004

On Wed, 1 Dec 2004 09:59:05 -0800, alkots
<alkots@discussions.microsoft.com> wrote:

>Hi Gene
>
>It was a good way, instead the form flashed
What happens if you Set Console OFF temporarily ?

If you do this, it is wise to include Set Console ON in any On Error
procedure :-)

Mike.

Re: landscape mode by Gene

Gene
Thu Dec 02 15:15:44 CST 2004

Mike McDowall <m.a.mcdowall@ed.com> wrote:

>On Wed, 1 Dec 2004 09:59:05 -0800, alkots
><alkots@discussions.microsoft.com> wrote:

>>It was a good way, instead the form flashed

>What happens if you Set Console OFF temporarily ?

Nothing. set console does not affect the display of the form.
Yes, I did try.

[snip]

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:
I have preferences.
You have biases.
He/She has prejudices.