Thread: Start MS Word?
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
dimm dimm is offline
external usenet poster
 
Posts: 28
Default Start MS Word?

Hi all,

I'm trying to open Microsoft Word using VBA. When I execute my code
something processes for a second but nothing happens......I have ticked the
'Microsoft Word 10.0 Object Library' box in the ToolsReferances menu. And I
have the following code:

Sub StartWord()
Dim wrdApp As Word.Application
Set wrdApp = New Word.Application
End Sub

Any ideas are appreciated....