Image Viewer CP ActiveX Control

DocxPDF2Docx

 

Convert PDF file to single/multi-page Microsoft Word (.docx) File.
 

Public Function DocxPDF2Docx( _
   ByVal strSourceImage As String, _
   ByVal strOutputDocx As String
) As Bool

 

Parameter

strSourceImage
   the string of PDF file name.

strOutputDocx
   the string of docx file name.

Return Value

Return true - successful
Return false - Failed


Example

   

Visual Basic Syntax
 
If ImageViewer1.DocxPDF2Docx("c:\source.pdf", "c:\test1.docx") Then
MsgBox "Save c:\test1.docx completed"
End If