Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to maximize preview window?
Message
From
08/08/2022 11:28:30
 
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
01684805
Message ID:
01684812
Views:
45
>>>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?
>
>Exactly!!. Thank you, Antonio!

Great, Dmitry!

Just a note: it should be
_Screen.Top = -_Screen.Height   && negative
but, in fact, setting just one of the positional properties would be enough in any case...
----------------------------------
António Tavares Lopes
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform