How to Kill the Word Process using VBA
Developers who are working on Word VBA would have experienced the Word Crash problem more often.
Here is a crude way to kill the Word process.
Sub Kill_Word()
Dim sKillWord As String
sKillWord = "TASKKILL /F /IM Winword.exe"
Shell sKillWord, vbHide
End Sub
Process Window
Use this option if you are sure that the process is unused one
- Login or register to post comments
- Feed: vbadb feed
- Original article
