Total Doc Converter X is a server app that once installed, allows multiple network users to convert DocX to PDF from the command line. Because Doc Converter X is accessed via a web server any number of end users can be granted permission to use it. Alternatively, our command line converter can be employed as a stand-alone application as well. Bottom line; when you need to perform quiet conversions free of interruption, this is the perfect tool for the job.
Offering full ActiveX support, the Total Doc Converter X can be integrated into almost any Windows app. Use our converter as a reliable library to deal with all your conversion needs. Your users won't even need to know how to convert DocX to PDF from Windows command line. Simply call COM object through .NET!
After installing the Total Doc Converter X you'll be greeted with a master list of commands available for use when setting up conversion projects. Server administrators and network users alike are able to benefit from this straight-forward, access-oriented design. Once you've arrived at the optimal project settings, you can save them for future use with our convenient .bat save feature.
Our Doc to PDF library is not limited to PDF only. In fact it converts DocX to a variety of other formats too (XLS, HTML, JPEG, TIFF, RTF, TXT).
Additional options let you:
After many years spent developing conversion apps, we've learned what options users need the most. True to our goal of unmatched flexibility, we've added these options to provide users with a single, robust utility that includes the functionality of many tools.
Feel free to try before you buy. Download our free evaluation version and see what you think. When the time comes to upgrade to the full-version, we offer a variety of licenses to meet your specific needs. For enterprise licensing, contact us via this form.
Total Doc ConverterX runs fine on Windows Vista/7/8/10/11.
string src="C:\\test\\Source.Doc"; string dest="C:\\test\\Dest.PDF"; DocConverterX Cnv = new DocConverterX(); Cnv.Convert(src, dest, "-c PDF -log c:\\test\\Doc.log"); MessageBox.Show("Convert complete!");
Download .NET Doc Covnerter example
dim C Set C=CreateObject("DocConverter.DocConverterX") C.Convert "c:\source.DOC", "c:\dest.TIF", "-cTIF -log c:\doc.log" Response.Write C.ErrorMessage set C = nothing
dim C Set C=CreateObject("DocConverter.DocConverterX") Response.Clear Response.AddHeader "Content-Type", "binary/octet-stream" Rresponse.AddHeader "Content-Disposition", "attachment; filename=test.pdf" Response.BinaryWrite c.ConvertToStream("C:\www\ASP\Source.doc", "C:\www\ASP", "-cpdf -log c:\html.log") set C = nothing
Some more samples in C# specifically for ASP.net. If you need examples on other languages please contact us. We will create any example specially for you.
$src="C:\test.doc"; $dest="C:\test.htm"; if (file_exists($dest)) unlink($dest); $c= new COM("DocConverter.DocConverterX"); $c->convert($src,$dest, "-c htm -log c:\doc.log"); if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;
require 'win32ole' c = WIN32OLE.new('DocConverter.DocConverterX') src="C:\\test\\test.docx"; dest="C:\\test\\test.pdf"; c.convert(src,dest, "-c PDF -log c:\\test\\Doc.log"); if not File.exist?(dest) puts c.ErrorMessage end
import win32com.client import os.path c = win32com.client.Dispatch("DocConverter.DocConverterX") src="C:\\test\\test.docx"; dest="C:\\test\\test.pdf"; c.convert(src, dest, "-c PDF -log c:\\test\\Doc.log"); if not os.path.exists(file_path): print(c.ErrorMessage)
uses Dialogs, Vcl.OleAuto; var c: OleVariant; begin c:=CreateOleObject('DocConverter.DocConverterX'); C.Convert('c:\test\source.docx', 'c:\test\dest.pdf', '-cPDF -log c:\test\Doc.log'); IF c.ErrorMessage<> Then ShowMessage(c.ErrorMessage); end;
var c = new ActiveXObject("DocConverter.DocConverterX"); c.Convert("C:\\test\\source.docx", "C:\\test\\dest.pdf", "-c PDF"); if (c.ErrorMessage!="") alert(c.ErrorMessage)
use Win32::OLE; my $src="C:\\test\\test.docx"; my $dest="C:\\test\\test.pdf"; my $c = CreateObject Win32::OLE 'DocConverter.DocConverterX'; $c->convert($src,$dest, "-c pdf -log c:\\test\\Doc.log"); print $c->ErrorMessage if -e $dest;
© 2024. All rights reserved. CoolUtils File Converters