NURU DAWUD

NURU DAWUD

  • 1.4k
  • 349
  • 16k

How to change word to pdf in c# windows form app?

Feb 12 2023 10:49 AM

I have used using Spire.Doc; but it does not chnage more than 3 pages?

        private void btnSave_Click(object sender, EventArgs e)
        {
                  //initialize word object
                    document = new Document();
                    document.LoadFromFile(samplePath);

                    //Save doc file.
                    document.SaveToFile(docxPath, FileFormat.Docx);
                    //Convert to PDF

                    document.SaveToFile(pdfPath, FileFormat.PDF);
                    MessageBox.Show("pdf  ", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    document.Close();
     
        }

 


Answers (5)