Link to home
Start Free TrialLog in
Avatar of Larry Brister
Larry BristerFlag for United States of America

asked on

VB Code End Process

How can I modify my code so that the java.exe *32 process stops that  you see in the screen print?

User generated image
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Larry Brister

ASKER

You put me on the right track.

This is what actually was the working code

            For Each jr In Process.GetProcessesByName("Java")
                Try
                    jr.Kill()
                Catch
                End Try
            Next