Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to maximize preview window?
Message
From
08/08/2022 10:59:59
 
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
01684805
Message ID:
01684810
Views:
70
Likes (3)
>Antonio,
>
>Thank you for your message. I added the ZOOM MINIMIZE CLOSE GROW to the DEFINE window and I do now see the controls in the title bar. Thank you.
>But the IN DESKTOP does not seem to work. Do I add it to the DEFINE WINDOW clause? And does it matter that the config.fpw has SCREEN=OFF?
>
>TIA

Yes, Dmitry, the _Screen being invisible will pose a problem.

You may turn the _Screen visibility on just to preview the report, and turn it off back again after the preview.

Something like this:
DEFINE WINDOW RepWindow [...] IN DESKTOP
_Screen.Left = -_Screen.Width  && send the _Screen to where is not to be seen
_Screen.Top = _Screen.Height
_Screen.Visible = .T.  && but make it visible
ZOOM WINDOW RepWindow MAX
REPORT FORM [...] PREVIEW WINDOW RepWindow
_Screen.Visible = .F.  && the _Screen is visible, again
_Screen.Left = 0  && and back to its normal position
_Screen.Top = 0
RELEASE WINDOWS RepWindow
Does this work like you were looking for?
----------------------------------
António Tavares Lopes
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform