Load MS Word Document

  • Thread starter Thread starter Mathieu
  • Start date Start date
Reference the word object library, create an instance of the
Word.Application interface (I've never quite undertood that one). and call
open.. you can view the class library and MSDN
 
* "Mathieu said:
How may I load a MS Word Document with VB.NET ?

What do you mean by "load"?

Opening?

\\\
Dim psi As New ProcessStartInfo()
With psi
.FileName = "C:\bla.doc"
.UseShellExecute = True
End With
Process.Start(psi)
///
 
Back
Top