Dim Hard As Word.Application
Set Hard = New Word.Application
Hard.Documents.Open "c:\ed_cs.rtf"
Hard.ActiveDocument.SaveAs "c:\ed_cs.txt", wdFormatDOSTextLineBreaks
Hard.Quit
Set Hard = Nothing
this code opens word and then gets word to save the file with linebreaks. This code is in a command button's click event.
If I check the task manager their is still a process called winword.exe running.
how do I get this code to remove itself from memory and get rid of the process.
It is a problem because I get an error the next time the button is clicked.


------------------
I am so skeptacle, I can hardly believe it!