This is your place for codes, sources, releases, snippets, tutorials, how-to's and everything you can imagine in VB.NET (visual basic).Everything is free and off-charge.Your comments are aways appriciated.
4/21/11
[VB.NET][SNP] Kill Current Process
Imports System.Diagnostics
Module Module1
Sub Main()
Process.GetCurrentProcess.Kill()
End Sub
End Module
Simply use this, by calling the module.
It closes the current program's process.
No comments:
Post a Comment