html converter (htmltools)

set the user agent to use in VeryPDF HTML Converter (htmltools)

is there a parameter to set the user agent to use in VeryPDF HTML Converter (htmltools) on the command line?
=====================================
You can set the proxy in IE, htmltools does use the proxy in IE automatically.

VeryPDF
=====================================
thanks for the reply.
I know about the proxy configuration, but I have to set the *user-agent* on each request.

It's quite important for us, we might even order a special development for it. Can you estimate the implementation and send me an offer for it? (We need it in the command line version.
=====================================
Thanks for your message, I want to know the details about your "user-agent", is it same as proxy configuration in IE?

Is following command line option okay to you?

Htmltools.exe -proxy 192.168.1.10:7070 https://www.verypdf.com C:\out.pdf

The -proxy parameter in above command line will be used to download the web page, is this parameter that you want to get? If yes, please feel free to let us know, we will provide a quotation for this function to you shortly.

VeryPDF
=====================================
no, the user agent is the browser identifier, which is automatically sent by the browser in http header fields to the server.

For example IE7 sends "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)"

See http://tools.ietf.org/html/rfc1945#section-10.15  and http://en.wikipedia.org/wiki/User_agent

There are few ways to change it on the fly (normally the only way to do it is by changing the registry, but then it only works when the browser is restarted). See http://www.lukepaynesoftware.com/articles/programming-tutorials/changing-the-user-agent-in-a-web-browser-control/

a)    We tested all options and the best one is to use the UrlMkSetSessionOption function
b)    The navigate() option has some problems with Frames and iframes, but maybe it is the easiest to implement for you.
a.    webBrowser1.Navigate ("http://www.whatsmyuseragent.com", "_self" , null, "User-Agent: Luke's Web Browser");

If you could add this as a new command line parameter and change the navigate function I would be happy to test it for you.

=====================================
One remark: I discussed with our engineer and it seems that to use UrlMkSetSessionOption function is the better solutions. Not sure if this makes a difference for you.

Anyway, I will be out of the office for the next 2 weeks and will contact you again only when I’m back.
In case we need something more urgently I did put my colleague on CC so he has your contact information as well.
=====================================
Thanks for your message, UrlMkSetSessionOption() function seems good, we will also research this function shortly.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
pdf to vector converter

Create PCL form from PDF files

Thanks for the assistance.

I used it to create one PCL form, but found your PCL format isn't what I expected.  I can't use it the way I hoped I could.

So, thank you, but I don't have a use for the program.
===============================
Well, thanks for offering that possibility.

Let's explore that.

I make my living programming and selling an income tax program called XXXXXX.  XXXXXX is a very small, niche company, with less than 200 customers.  I am the owner, and only employee.

I'm attaching two .PDF files from the IRS website, (Form 1040 and Form 8814).  Form 1040 is a two-page form.  Form 8814 has a watermark.  I'm also attaching Wisconsin Form 1 from the Wisconsin Department of Revenue website.  Form 1 has barcodes, and is a four- page form.

I'm also attaching corresponding .PCL files (we give them an .HP extension for our tax program).  We update (and create from scratch when necessary) those .HP files here, using a program called FORMFORGE.  Every year, we must download and print the official tax forms.  We then manually compare them to our .HP files from the year before, and then manually update each page of each tax form that we use.  It's doable, but it is very time-consuming.  Each year, we use approximately 400 pages of federal and state tax forms.

My goal is to programmatically convert the .PDF files, (which we download from the IRS or state websites), into well-behaved, small .PCL files, like those I've attached.

Do you have a way to make that happen?  At a reasonable cost for a small company?

Thanks.
===============================
Thanks for your sample PCL files, we will check your PCL files shortly, we will let you know as soon as we have any progress on this matter.

VeryPDF

VN:F [1.9.20_1166]
Rating: 10.0/10 (1 vote cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
pdf to vector converter

Use 64bit version of PDF2Vector SDK

Please download PDF2Vector SDK from following URL,

http://www.verydoc.com/pdf2vec_sdk.zip

You can call PDF2Vector SDK from VB, VC, etc. source code directly, please refer to follwoing VB sample code,
~~~~~~~~~~~~~~~~~~~~~~
Private Declare Function VeryPDF_PDF2Vector Lib "pdf2vec.dll" (ByVal strCommandLine As String) As Long

Private Sub Command1_Click()
Dim nRet As Long
Dim strCmd As String

strCmd = "pdf2vec -$ XXXXXXXXXXXXXXXX"
strCmd = strCmd & " d:\temp\11.pdf"
strCmd = strCmd & " C:\out.swf"

nRet = VeryPDF_PDF2Vector(strCmd)
MsgBox (Str(nRet))
End Sub
~~~~~~~~~~~~~~~~~~~~~~

You can deliver command line parameters and your License Key to VeryPDF_PDF2Vector() function, then you can convert your PDF files to other formats without any restrictions.
=================================================
Thanks for your information, I′m a Network Administrator of XXXXXXX Software. We need start development process, now over 64 bits plataform, and, some time ago we was buy from you a SDK software to development called VeryDoc, but that version is only compatible with 32 bits systems.

You can find informations about our purchase in mail copied from AAA who′s copied in this message.

Then we need now proceed a new purchase, of VeryDoc SDK upgrade to 64 bits version. Can you send to us informations related values and methods to buy it ?

We will be waiting
my best regards,
=================================================
Thanks for your information, please download latest version of PDF2Vector SDK from following URL,

http://www.verydoc.com/pdf2vec_sdk.zip

You can call PDF2Vector SDK from VB, VC, etc. code directly, please refer to follwoing VB sample code,
~~~~~~~~~~~~~~~~~~~~~~
Private Declare Function VeryPDF_PDF2Vector Lib "pdf2vec.dll" (ByVal strCommandLine As String) As Long

Private Sub Command1_Click()
Dim nRet As Long
Dim strCmd As String

strCmd = "pdf2vec -$ XXXXXXXXXXXXXXXX"
strCmd = strCmd & " d:\temp\11.pdf"
strCmd = strCmd & " C:\out.swf"

nRet = VeryPDF_PDF2Vector(strCmd)
MsgBox (Str(nRet))
End Sub
~~~~~~~~~~~~~~~~~~~~~~

You can deliver command line parameters and your License Key to VeryPDF_PDF2Vector() function, then you can convert your PDF files to other formats without any restrictions.

You can use following code to call PDF2Vector COM from 64bit application,

'===================================
'Please run "../bin/register_x64_com.bat" to register pdf2vector_com.exe first,
'then you can run "test_pdf2vec_com_for_x64.vbs" to call PDF2Vector COM method
'to convert PDF documents to other formats.
'===================================

Set fso = CreateObject("Scripting.FileSystemObject")
strFolder = fso.GetParentFolderName(wscript.ScriptFullName)

pos = InstrRev(strFolder, "\")
strFolder2 = Mid(strFolder, 1, pos)
strPDFFile = strFolder2 & "bin\test.pdf"

strOutFile = strFolder & "\com_test_x64.xps"
Set pdf2vec = CreateObject("PDF2VectorCom.pdf2vec")

strCmd = "pdf2vec -$ XXXXXXXXXXXXXXXXXXXX """ & strPDFFile & """ """ & strOutFile & """"

MsgBox (strCmd)
nRet = pdf2vec.com_PDF2Vector(strCmd)
MsgBox ("Return Value is: " & CStr(nRet))

VeryPDF
=================================================

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
docprint pro

I’m using VeryPDF docPrint Pro to convert Word file to PDF file

Dear support team,

Our application system is using VeryPDF docPrint Pro to convert Word file to PDF
but recently the process often gets hanged and when we checked the
Task Manager, we saw some processes (e.g. doc2pdf.exe) that were
executed last time were still there and it seems that is causing the trouble
because once we killed the process, Word file conversion was done successfully.

We have been using VeryPDF docPrint Pro for a few years and we have never had this trouble before. It started happening in the last 1 month.

Please kindly advice where we should check it.
Thank you for your support in advance.
================================
We suggest you may kill doc2pdf.exe or reinstall VeryPDF docPrint Pro Converter to try again, this may solve this problem to you, please to try.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
powerpoint to flash

Convert PowerPoint documents to Flash files from command line

Command Line options

I want to use the software on command Line I am using the software name is “ppt2flash.exe” as your company product Please do help me or send me the steps to manage this software on command line
==============================
Please download VeryDOC PowerPoint Converter v3.0 from following page to try, VeryDOC PowerPoint Converter v3.0 does support command line operation,

http://www.verydoc.com/powerpoint-converter.html

please refer to command line options from following page,

http://www.verydoc.com/powerpoint-converter-help.html

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)