Code Samples - Document Converter Pro

Example 2: How to convert a file (submitFileEx method) - C# Copy 

Add a reference in your Visual Studio project to docConverter library.
To do this:
        a. On the Project menu, click Add Reference;
        b. On the COM tab, locate docConverter 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
  string fileToConvert = @"c:\users\public\test.doc";

  Neevia.docConverter DC = new Neevia.docConverter();

  DC.setParameter("DocumentOutputFormat", "PDF");
  DC.setParameter("PDFAutoRotatePage", "All");

  int rv;
  rv = DC.submitFileEx(fileToConvert,@"c:\docs\out",@"c:\docs\error",@"c:\docs\orig");

  if (rv != 0) {
     MessageBox.Show(" *** submitFileEx error **** ");
  } else {

    rv = 2;
    while (rv == 2)
    {
      rv = DC.checkStatusEx(fileToConvert,@"c:\docs\out",@"c:\docs\error");
      Application.DoEvents();
      DC.doSleep(1000);
    }

    if (rv == 0) {
      MessageBox.Show("Converted successfully");
    } else {
      MessageBox.Show("Error converting");
    }
  }