Code Samples - Neevia docuPrinter SDK

Example 4: Convert a MS Excel document into PDF - Visual Basic Copy 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Sub ExcelConverter()

   Dim docToConvert : docToConvert="c:\users\public\test.xls"
 
   Dim DPSDK : Set DPSDK = CreateObject("docuPrinter.SDK")
   DPSDK.BackupSettings
 
   DPSDK.DocumentOutputFormat = "PDF"
   DPSDK.DocumentOutputName = "demoXLS"
   DPSDK.DocumentOutputFolder = "c:\users\public\"
 
   DPSDK.HideSaveAsWindow = true
   DPSDK.DefaultAction=1
 
   DPSDK.ApplySettings
 
   Dim MSExcel : Set MSExcel = CreateObject("Excel.Application")
   MSExcel.DisplayAlerts = False
 
   Dim XLDoc : Set XLDoc = MSExcel.Workbooks.Open(docToConvert, 0, True)
 
   XLDoc.Activate
   XLDoc.PrintOut ,,, False, "docuPrinter"
   XLDoc.Saved = True
   XLDoc.Close
   MSExcel.Quit
   Set MSExcel = Nothing
 
   Dim RVal : RVal = DPSDK.Create ' Create output document

   DPSDK.RestoreSettings
   Set DPSDK = Nothing 

   If (RVal <> 0) Then 
     MsgBox "Error while converting the document!!!"
   Else
     MsgBox "Done converting!!!"
   End If

End Sub