Load MS Word Document

  • Thread starter Thread starter Mathieu
  • Start date Start date
M

Mathieu

Hi All,

How may I load a MS Word Document with VB.NET ?

Thank you !
 
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)
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top