Hi!
Is it possible to maximize the screen report preview? . How am I going to
do that? Normally, it open with partial window of the report preview. I
wanted it as big as the VFP window.
Thanks.
/patrick
Patrick Tura - 09 Sep 2008 17:32 GMT
Just additional information.
Im using VFP 8.0
> Hi!
>
[quoted text clipped - 5 lines]
>
> /patrick
Mike Gagnon - 15 Sep 2008 10:42 GMT
In the init of the dataenvironment of the report put:
ZOOM WINDOW 'Report Designer' MAX
> Hi!
>
[quoted text clipped - 5 lines]
>
> /patrick
Patrick Tura - 15 Sep 2008 19:36 GMT
Hello Mike,
Thank you very much for the information. I got this problem solved.
Long time no hear, but now you are back thanks a lot.
/patrick
> In the init of the dataenvironment of the report put:
> ZOOM WINDOW 'Report Designer' MAX
[quoted text clipped - 8 lines]
>>
>> /patrick
Patrick Tura - 17 Sep 2008 15:43 GMT
Mike,
Thanks a lot really for giving me this information. I learn something new in
VFP and got fixed my problem.
Long time no hear:-)
/patrick
> In the init of the dataenvironment of the report put:
> ZOOM WINDOW 'Report Designer' MAX
[quoted text clipped - 8 lines]
>>
>> /patrick
Jan Bucek - 15 Sep 2008 22:55 GMT
Patrick Tura napsal(a):
> Hi!
>
> Is it possible to maximize the screen report preview? . How am I going
> to do that? Normally, it open with partial window of the report preview.
> I wanted it as big as the VFP window.
I use simple:
WITH _SCREEN
llPreview=("PREVIEW" $ Upper(pcParams))
IF llPreview
llSVisible=.Visible
lnWIndowState=.WindowState
.Visible=.T.
.WindowState=2
keyboard "{Ctrl+F10}"
ENDIF
REPORT FORM (pcFormName) &pcParams.
IF llPreview
.Visible=llSVisible
.WindowState=lnWIndowState
ENDIF
ENDWITH
RETURN .T.
> Thanks.
>
> /patrick