Thread: openning word
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Foss Foss is offline
external usenet poster
 
Posts: 22
Default openning word

How about this one?

Sub OpenWord()
Shell "winword.exe " & Chr(34) & "C:\address.doc" & Chr
(34), vbMaximizedFocus
End Sub

This works for me..

Cheers,
Foss

-----Original Message-----
This works very well to open word, but is there any way
to open a specific word file, i just keep getting a
runtime 5 error.


-----Original Message-----
Hi there,

How about this:

Sub OpenWord()
Shell "winword.exe", vbMaximizedFocus
End Sub

Cheers,
Foss

-----Original Message-----
Hi,

Is there any way to open a word file from excel?
.

.

.