To start an instance of Word I use the code

Code:
 oWord = CreateObject("Word.Application")
            oWord.Visible = True
            oDoc = oWord.Documents.Add("H:\Customer.dot", , , True)
            'oWord.Quit()
First off, I do not see word starting up, second I don't see word appear at all. However, in the taskmanager it is started, but cannot end the process...

When I activate the code oWord.Quit() I get an error message before compile stating :
C:\Inetpub\wwwroot\App\WordInterface.asmx.vb(48): 'Quit' is ambiguous across the inherited interfaces 'Word._Application' and 'Word.ApplicationEvents2_Event'.

How do I solve these problems?

I appreciate your help, thanx...

Dozo