Visual Basic .NET – Cerrar Aplicaciones
Written by lopezatienza on 20/05/2011 – 12:24 -Buenas a todos.
En este artículo voy a explicar cómo cerrar aplicaciones de manera explícita, como si las cerráramos desde el Administrador de tareas.
For Each p In Process.GetProcesses() If Not p Is Nothing Then If p.ProcessName.ToString = "NombreAplicacion" Then Try p.Kill() Exit For Catch ex As Exception MsgBox(ex.Message.ToString, MsgBoxStyle.Critical) Exit Sub End Try End If End If Next
Un saludo.
Autor: Antonio Lopez Atienza
Tags: VB.NET
Posted in Visual Basic .NET | 2 Comments »
mayo 23rd, 2013 at 16:00
Muchas gracias. . . gran aporte ok
mayo 23rd, 2013 at 16:02
Me alegro que te sirviera de ayuda.
Un saludo!