I hope somebody can help me with this one;

I have the following code:

Code:
        oWord = CreateObject("Word.Application")
        oWord.Visible = True
        WordIntface.rewrite_text()
        oWord.ActiveDocument.PrintOut()
        oWord.Quit()
        oWord = Nothing
where WordIntface is a webmethod to replace specific text in the document I opened...

After that I want to print with the method PrintOut.

I get no errors, I get no warnings, everything just seems fine... until I walk to the printer to find out nothing has been printed

What am I doing wrong

Thanx for the help people!

Dozo