Code Samples - Neevia docuPrinter SDK

Example 3: Convert a MS Word document into PDF (docuPrinter Word Macro) - C# Copy 

Add a reference in your Visual Studio project to docuPrinter library.
To do this:
        a. On the Project menu, click Add Reference;
        b. On the COM tab, locate docuPrinter Library and then click Select;
        c. Click OK in the Add References dialog box to accept your selections.
 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
   private void button1_Click(object sender, EventArgs e)
   {

      object fileToConvert = @"c:\users\public\test.doc";

      docuprinter.SDK DPSDK = new docuprinter.SDK();

      DPSDK.DocumentOutputFormat = "PDF";
      DPSDK.DocumentOutputName = "demoDOC";
      DPSDK.DocumentOutputFolder = @"c:\users\public\";
      DPSDK.PDFAutoRotatePage = "All";

      DPSDK.HideSaveAsWindow = true;
      DPSDK.DefaultAction = 1;
      DPSDK.ApplySettings();

      docuprinter.WordMacro DPWORD = new docuprinter.WordMacro();
      DPWORD.CHBookmarks = true;
      DPWORD.CInternetLink = true;
      DPWORD.CCrosRef = true;
      DPWORD.CCrosDoc = true;
      DPWORD.LinkFootEnd = true;
      DPWORD.CWordTextBox = true;
      DPWORD.CDocInfo = true;
      DPWORD.CBookNameDest = true;
      DPWORD.CComNotes = true;
      int RVal = DPWORD.ConvertDocument( fileToConvert );

      DPWORD = null;
      DPSDK = null;

      if (RVal != 0) {
         MessageBox.Show("Error while converting the document!!!");
      } else {
         MessageBox.Show("Done converting !!!");
      }

   }