1
Answer

Trim the Blank lines in a word Document

Anisha Stephen

Anisha Stephen

14y
2.1k
1
I want to give the file path for the Document After that I have to trim the blank  lines in the Document and write it into separate temporary file. The file format is Docx.
I got blank word Document As output. Am fresher and new to C#.Please help me

Attachment: readWordDoc.zip

Answers (1)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();