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 urlToConvert = "http://neevia.com"; Neevia.docConverter DC = new Neevia.docConverter(); DC.setParameter("DocumentOutputFormat", "PDF"); DC.setParameter("DocumentOutputFolder", @"c:\users\public\"); DC.setParameter("PDFAutoRotatePage", "All"); int rv; rv = DC.submitURL(urlToConvert, "neevia.url", ""); if (rv != 0) { MessageBox.Show(" *** submitUrl error **** "); } else { rv = 2; while (rv == 2) { rv = DC.checkStatus("neevia.url", ""); Application.DoEvents(); DC.doSleep(1000); } if (rv == 0) { MessageBox.Show("Converted successfully"); } else { MessageBox.Show("Error converting"); } } |