Question:
How can I open a Word document from my Visual Basic application?
Answer:
Use the following code sample to do it:
Set wordbasic = CreateObject(“word.basic”)wordbasic.fileopen pathname$, 0, 1where:pathname$ is the full pathname of the work document to open,parameter 1 is for confirm conversion (Y/N)parameter 2 is for read only (Y/N)