Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Word Document with WPF without open dialog

Tags:

ms-word

wpf

I have the path to a Word document saved in an SQL Database.

I am able to retrieve the path but I cannot work out the best approach to open the Word document from WPF without using the OpenFileDialog. I've given up any thoughts of embedding Word in WPF as it has too many gotchas.

I just want to be able to click a button or hyperlink and using the retrieved document path, open Word.

like image 730
Mitch Avatar asked Feb 27 '23 02:02

Mitch


1 Answers

Try something like

Process wordProcess = new Process();
wordProcess.StartInfo.FileName = pathToYourDocument;
wordProcess.StartInfo.UseShellExecute = true;
wordProcess.Start();

By setting UseShellExecute to true it will open the document using the default program, in your case Word.

like image 78
TimothyP Avatar answered Mar 07 '23 22:03

TimothyP