Newbie: Kill App

S

SMB

Hi,
I am a newbie.
I am doing a VB.net app to kill notepad.exe
But it is not working.
Can anyone help ?

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Dim myProcesses() As Process

'myProcesses = System.Diagnostics.Process("notepad.exe")

myProcess.Kill()

End
 
H

Herfried K. Wagner [MVP]

SMB said:
I am doing a VB.net app to kill notepad.exe

\\\
Imports System.Diagnostics
..
..
..
Dim Processes() As Process = Process.GetProcessesByName("notepad.exe")
For Each p As Process In Processes
p.CloseMainWindow()
Next p
///
 
C

Cor Ligthert

Herfried,

In my opinion does this kill all open notepad applications.

(Just because you tell always what is wrong with the by me used simple
solution with the mutex and a single instance).

:)

Cor
 
C

Cor Ligthert

Herfried,
I think that's what the OP wants to archieve.
How comes that, I have often more textboxes open to past, I would not like
it when those all where automaticly closed in the middle by an application.

Cor
 
H

Herfried K. Wagner [MVP]

Cor Ligthert said:
How comes that, I have often more textboxes open to past, I would not like
it when those all where automaticly closed in the middle by an
application.

Both of us do not know the exact scenario.
 
S

SMB

Hi,

I did that and it does not kill notepad.exe


Imports System.Diagnostics

Public Class Form1

Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()

MyBase.New()

'This call is required by the Windows Form Designer.

InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub

'Form overrides dispose to clean up the component list.

Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)

If disposing Then

If Not (components Is Nothing) Then

components.Dispose()

End If

End If

MyBase.Dispose(disposing)

End Sub

'Required by the Windows Form Designer

Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer

'It can be modified using the Windows Form Designer.

'Do not modify it using the code editor.

Friend WithEvents Button1 As System.Windows.Forms.Button

<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

Me.Button1 = New System.Windows.Forms.Button

Me.SuspendLayout()

'

'Button1

'

Me.Button1.Location = New System.Drawing.Point(104, 112)

Me.Button1.Name = "Button1"

Me.Button1.TabIndex = 0

Me.Button1.Text = "Button1"

'

'Form1

'

Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)

Me.ClientSize = New System.Drawing.Size(292, 273)

Me.Controls.Add(Me.Button1)

Me.Name = "Form1"

Me.Text = "Form1"

Me.ResumeLayout(False)

End Sub

#End Region

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Dim Processes() As Process = Process.GetProcessesByName("note")

For Each p As Process In Processes

p.CloseMainWindow()

Next p

End Sub

End Class
 
H

Herfried K. Wagner [MVP]

SMB said:
I did that and it does not kill notepad.exe
[...]
Dim Processes() As Process = Process.GetProcessesByName("note")

The process name is "notepad.exe", not "note".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top