Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Print Preview Window
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows 7
Miscellaneous
Thread ID:
01564036
Message ID:
01564210
Views:
47
>I have never programmed for a print preview and now a client wants one. Does anyone have a suggestion. I provide standalone EXE and do not use the foxpro desktop.
>I have never used the VFP9 preview container API Suggestions or helps would be appreciated.

I use:

define window _Preview from 1,1 to wrows("")-2,wcols("")-2 close float nominimize grow zoom system;
title " REPORT PREVIEW" name _PREVIEW

with _Preview
.Top = 5
.Left = 5
.Width = _Screen.Width-20
.Height = _Screen.Height-40
.MDIFORM = .T.
endwith
report form &cRptName window _Preview preview noconsole

(This is part of a printing toolbar I provide)
Previous
Reply
Map
View

Click here to load this message in the networking platform