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 | private void button1_Click(object sender, EventArgs e) { string fileToConvert = @"c:\users\public\test.ppt"; docuprinter.SDK DPSDK = new docuprinter.SDK(); DPSDK.DocumentOutputFormat = "PDF"; DPSDK.DocumentOutputName = "demoPPT"; DPSDK.DocumentOutputFolder = @"c:\users\public\"; DPSDK.PDFAutoRotatePage = "PageByPage"; DPSDK.HideSaveAsWindow = true; DPSDK.DefaultAction = 1; DPSDK.ApplySettings(); docuprinter.PowerpointMacro DPPPT = new docuprinter.PowerpointMacro(); DPPPT.CTransition = true; DPPPT.CHBookmarks = true; DPPPT.CInternetLink = true; DPPPT.CDocInfo = true; int RVal = DPPPT.ConvertDocument( fileToConvert ); DPPPT = null; DPSDK = null; if (RVal != 0) { MessageBox.Show("Error while converting the document!!!"); } else { MessageBox.Show("Done converting !!!"); } } |