Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Print an xml file
Message
From
22/01/2016 15:40:04
 
 
To
22/01/2016 08:26:33
Metin Emre
Ozcom Bilgisayar Ltd.
Istanbul, Turkey
General information
Forum:
Visual FoxPro
Category:
Third party products
Miscellaneous
Thread ID:
01630017
Message ID:
01630114
Views:
166
Then if have an URL try this code:
*this command line prints any web page (or local web page) without show it (invisible).
*Rundll32.exe %windir%\system32\mshtml.dll,PrintHTML "http://......any URl"
*this is under security considerations(seen  some  web site source dont admit this printing (robots)).

local m.url,m.xx
m.url="http://yousfi.over-blog.com/2016/01/unicode-texts-and-vfp-continuation.html"
m.xx="Rundll32.exe "+ADDBS(GETENV('windir'))+'system32\mshtml.dll,PrintHTML "'+m.url+'"'

local oshell
oshell=newObject("wscript.shell")
oshell.run(m.xx)
oshell=null
retu
can also translate it to shellexecute with params.
Regards
Previous
Reply
Map
View

Click here to load this message in the networking platform