Attach to processID of Word

M

mkobaly

I am wondering if there is a way to attach to a currently running WORD process. I have a VB.NET application that spawns WORD, but if there is already one open I would rather use that one instead of creating another instance. Basically in short is there a way to do this.... oWord as Word.Application = ctype(Process.GetProcessesByName("winword")(0), word.Application)
 
Top