1 2 3 4 5 6 7 8 9 10 11 12 13 | String docToConvert = @"c:\users\public\test.tif"; Neevia.docCreator DC = new Neevia.docCreator(); int RVal = DC.convertImage(docToConvert, docToConvert + ".pdf"); DC = null; if (RVal != 0) { MessageBox.Show("Error while converting the document!!!"); } else { MessageBox.Show("Done!!!"); } |