Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Skipping and dups when printing fillable pdfs
Message
 
 
To
23/03/2010 10:26:40
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01456159
Message ID:
01456531
Views:
83
I would guess that it's timing issue. The ShellExecute() launches PDF printing and code execution continues before printing is completed. Your arbitrary 10 seconds delay may not be enough in all cases.

>Thanks Sergey. Here it is.
>
>
>LOCAL lcfile
>
>lcfile = m.pcfile
>
>if vartype(lcfile) <> "C" OR empty(ALLTRIM(lcfile)) 
>	messagebox("No parameters passed to printpdf.", 0+16+0,"Error")
>	return .f.
>endif
>
>**ShellExecute API declaration
>DECLARE INTEGER ShellExecute ;
>	IN SHELL32.DLL ;
>	INTEGER nWinHandle,;
>	STRING cOperation,;   
>	STRING cFileName,;
>	STRING cParameters,;
>	STRING cDirectory,;
>	INTEGER nShowWindow
>
>* Open.
>* ShellExecute(0, "Open", lcfile, "", "", 1)
>
>* Print.
>ShellExecute(0, "Print", lcfile, "", "", 0)
>
>return .t.
>
>
>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform