Good Day!
I want to know if it's possible to show SaveFileDialogue
when saving .docx file using Novacode DocX
?
Sample:
string fileName = @"D:\Users\John\Documents\DocXExample.docx";
var doc = DocX.Create(fileName);
doc.InsertParagraph("This is my first paragraph");
doc.Save();
Where shoud I put the SaveFileDialogue
code?
Many Thanks!