Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
REPORT PREVIEW with _screen.visible = .F.
Message
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00056594
Message ID:
00056776
Views:
37
>>I have a single form app that is the top-level form. _Screen.Visible is .F.. When I issue REPORT...PREVIEW, nothing happens. When _Screen.Visible is .T., it works. How do I make it work with the screen not visible?
>>
>>TIA
>
>Try this
>
>_SCREEN.CLOSABLE=.F.
>_SCREEN.CAPTION=''
>_SCREEN.MAXBUTTON=.F.
>_SCREEN.MINBUTTON=.F.
>_SCREEN.MOVABLE=.F.
>_SCREEN.CONTROLBOX=.F.
>_SCREEN.VISIBLE=.T.
>report form myreport preview
>_SCREEN.VISIBLE=.F.
>_SCREEN.CONTROLBOX=.T.
>_SCREEN.CLOSABLE=.T.
>_SCREEN.CAPTION='Visual Foxpro'
>_SCREEN.MAXBUTTON=.T.
>_SCREEN.MINBUTTON=.T.
>_SCREEN.MOVABLE=.T.
>
>Hope it helps

I use a Top_level form with Application.Visible = .F. When I'm going to preview a report I do;

Application.Visible = .T.
REPORT blah blah
Application.Visible = .F.

Steve
Previous
Reply
Map
View

Click here to load this message in the networking platform