' Copyright (c) 2019 ActivePDF, Inc. ' ActivePDF DocConverter 2015 ' Example generated 02/16/19 Dim FSO, cadXML, strPath, results ' Get current path Set FSO = CreateObject("Scripting.FileSystemObject") strPath = FSO.GetFile(Wscript.ScriptFullName).ParentFolder & "\" Set FSO = Nothing ' Instantiate Object Set oDC = CreateObject("APDocConverter.Object") ' Settings specific to CAD conversions Set oCAD = CreateObject("CADConverter.Object") ' Options available for CAD conversions oCAD.ASCIIHexEncoding = false oCAD.Color = 0 oCAD.EmbedFonts = 2 oCAD.ExportLayers = 2 oCAD.ExportLayouts = 0 oCAD.FlateCompression = false oCAD.HatchToBitmapDPI = 150 oCAD.HiddenLineRemoval = false oCAD.Lineweight = -1 oCAD.OtherHatchesSettings = 0 oCAD.PlotStyleTableName = "Example" oCAD.SHXTextAsGeometry = false oCAD.SimpleGeometryOptimization = false oCAD.SolidHatchesSettings = 2 oCAD.TrueTypeAsGeometry = false oCAD.ZoomToExtents = true ' Page size is only set if ZoomToExtents is true oCAD.SetExtentsPageSize 210, 297 ' Convert the settings to XML and send it to DocConverter cadXML = oCAD.Serialize() oDC.SetAddonOptions cadXML ' Release Object Set oCAD = Nothing ' Set the amount of seconds before a request will time out oDC.Timeout = 40 ' Enable extra logging (logging should only be used while troubleshooting) ' C:\ProgramData\activePDF\Logs\ oDC.Debug = true ' Convert the file to PDF Set results = oDC.ConvertToPDF(strPath & "sample.dwg", strPath & "new.pdf") If results.DocConverterStatus <> 0 Then ErrorHandler "ConvertToPDF", results, results.DocConverterStatus End If ' Release Object Set oDC = Nothing ' Process Complete Wscript.Echo("Done!") ' Error Handling Sub ErrorHandler(method, oResult, errorStatus) Wscript.Echo("Error with " & method & ": " & vbcrlf _ & errorStatus & vbcrlf _ & oResult.details) Wscript.Quit 1 End Sub