Im running word within a label on my form and i want to be able to close word properly upon form closing so that when the program is re run you don't get document recovery coming up. Im currently using the following but this always causes document recovery to appear the next time it is run. Thanks


Code:
For Each currentProcess As Process In killword
                    If currentProcess.ProcessName = "WINWORD" Then currentProcess.Kill()

                Next
Using vb.net 2003