private void button1_Click(object sender, EventArgs e) { //Create word document Document document = new Document(); Section section = document.AddSection(); document.LoadFromFile("KPI000006.rtf", FileFormat.Rtf); //document.SaveToFile("New.pdf", FileFormat.PDF); document.Sections[0].Paragraphs[3].AppendBreak(BreakType.PageBreak); document.LoadFromFile("KPI000007.rtf", FileFormat.Rtf);//Launching the pdf reader to open. document.SaveToFile("New.pdf", FileFormat.PDF); FileViewer("New.pdf"); } private void FileViewer(string fileName) { try { System.Diagnostics.Process.Start(fileName); } catch { } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)