Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 70 results for
killprocess
- Page 1
Help With Closing Processes
Programming
Software Development
13 Years Ago
by NetJunkie
….Load If Keys.ControlKey + Keys.I Then Try
KillProcess
("chrome.exe") Catch ex As Exception MessageBox….Load If Keys.ControlKey + Keys.I Then Try
KillProcess
("chrome.exe") Catch ex As Exception MessageBox…
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by NetJunkie
…KeyPress If Keys.ControlKey + Keys.I Then Try
KillProcess
("chrome.exe") Catch ex As Exception …Try ElseIf Keys.ControlKey + Keys.L Then Try
KillProcess
("Skype.exe") Catch ex As Exception MessageBox…
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by NetJunkie
… As Boolean skey = GetAsyncKeyState(Keys.PageUp) If skey = True Then
KillProcess
("chrome.exe") End If [/code] Of course, I…
someone to guide me to repair my code
Programming
Software Development
13 Years Ago
by khizer03
… your screen!!!") me.visible=false lockscreen.visible=true lockscreen.
killprocess
.enabled=true 'the code i had written in the timer… is public sub
killprocess
(byval processTokill) dim proc() As process= Process.GetProcess for I…
windows problems...
Hardware and Software
Microsoft Windows
21 Years Ago
by idgieaw
… percentage and one does "normal" processes. I downloaded
killprocess
and kill one of the services.exe every morning when…
Definitely something nasty...
Hardware and Software
Information Security
16 Years Ago
by amrith92
…;DIR> d-------- c:\documents and settings\Administrator\Application Data\
KillProcess
2008-12-22 19:50 . 2008-02-04 12:25…
Anti-Malware programs will not run
Hardware and Software
Information Security
15 Years Ago
by Turkagent
… FOR /F "TOKENS=*" %G IN (temp05) DO @NIRCMD
KILLPROCESS
%G ) CALL :MDCheck Could Not Find C:\32788R22FWJFW\md5sum00.pif…
Looping through access tables and creating seperate spreadsheets for each table
Programming
Software Development
13 Years Ago
by dwinn
… If XlApp.Quit Set xlWorkBook = Nothing Set XlApp = Nothing 'Call
KillProcess
("EXCEL.EXE") ' ctlLabel.Caption = strIndent & ": FINISHED…
C++ postfix not working?
Programming
Software Development
13 Years Ago
by singularity~
… // Determine process fate ran = rand() % 3; switch(ran) { case 0:
killProcess
(); // process terminates and is removed from the system. case 1…
Re: C++ postfix not working?
Programming
Software Development
13 Years Ago
by Ab000dy_85
…(tempA); }[/CODE] similar to here [CODE]switch(ran) { case 0:
killProcess
(); // process terminates and is removed from the system. break; case…
Re: solution for this
Programming
Software Development
15 Years Ago
by coollife
i tried your code by calling like this in form load Call
KillProcess
(firefox.exe) Call
KillProcess
(firefox) Call
KillProcess
(Mozilla.exe) Cal
KillProcess
(mozilla) For Whatever option i try it says object required please help
Re: How to terminate some application using vb code
Programming
Software Development
15 Years Ago
by AndreRet
…As Long 'Then the following ---->Public Sub
KillProcess
(NameProcess As String) Const PROCESS_ALL_ACCESS = &H1F0FFF … button etc, use the following --->Call
KillProcess
(Mozilla.exe)'In a module add the following…As Long 'Then the following ----> Public Sub
KillProcess
(NameProcess As String) Const PROCESS_ALL_ACCESS = &H1F0FFF …
Re: solution for this
Programming
Software Development
15 Years Ago
by AndreRet
… As Long) As Long 'Then the following ----> Public Sub
KillProcess
(NameProcess As String) Const PROCESS_ALL_ACCESS = &H1F0FFF Const TH32CS_SNAPPROCESS As… ing a command button etc, use the following ---> Call
KillProcess
(Mozilla.exe) [/CODE]
Re: Changing proxy settings on-the-fly
Programming
Software Development
14 Years Ago
by ProxyFake
…, bool AutoKillFireFox) { if (AutoKillIE) Proxy.ProxyHelper.
KillProcess
("iexplore"); if (AutoKillFireFox) Proxy.ProxyHelper.
KillProcess
("FireFox"); RegistryKey registry = Registry.CurrentUser…
Re: get instance when .exe or browser is clicked to open
Programming
Software Development
14 Years Ago
by codeorder
… when removing from lists, else it will crash your app.
killProcess
(CStr(arlMyApplicationsList(i)), Form2) '// send the application and your …password Form. Next End Sub Private Sub
killProcess
(ByVal selectedApplication As String, ByVal myPasswordForm As Form) myRunningProcesses = Process…
Re: How to End proccess in taskmanger using command botton vb6
Programming
Software Development
13 Years Ago
by Jx_Man
…Long[/CODE] In Form : [CODE] '------------------------------------------------------- Public Sub
KillProcess
(NameProcess As String) Const PROCESS_ALL_ACCESS = &H1F0FFF Const … End Sub '------------------------------------------------------- Private Sub Command1_Click()
KillProcess
"Notepad.exe" End Sub[/CODE]
Re: Terminate a process by it's name
Programming
Software Development
15 Years Ago
by kiuhnmgrtdcv
… is under mfc this is the function [CODE]int CMyTaskManagerDlg::
Killprocess
(int nProcessID) { HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, 0, nProcessID ); BOOL nReturnVal…
Re: Database Backup/Restore SQL Server 2005 using VB6.0
Programming
Software Development
14 Years Ago
by frexyang
…; " " & Err.Number Exit Function End If 'objServer.
KillProcess
1 End Function : the problem is I cant find the…
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by kingsonprisonic
[url]http://www.daniweb.com/software-development/vbnet/threads/379716[/url] This might help you.....
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by NetJunkie
Thanks for the reference but this did not help me. I am trying to make it where certain keystrokes end the process. I already have the code to end the process, I just don't know where to add it. Thanks anyways.
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by NetJunkie
UPDATE: I have removed the TextBox and just have the ListView on the Form1 now. So, when I click either one of the commands, CTRL + I or CTRL + L, it closes both Chrome and Skype almost like it isn't checking for the Keystrokes that are being pressed it is just ending all the processes listed like I am clicking all of them. This is becoming very …
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by codeorder
q.q.(quick question) Do you only need to kill.processes if your app. is active or can it run in the background and kill.processes if certain keys are pressed?
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by kingsonprisonic
you can use Context Menu Strip Control. First Create all menus and add shortcut key to each menu item also code behind each menu item. Now set the textbox1.contextmenustrip=contextmenustrip1 Now u can use shortcuts easily .
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by NetJunkie
Ok I have added a context menu strip and added the code to those buttons but when I use the shortcut I set it does not close the processes. Any help? BTW thanks to everyone for helping out thus far.
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by NetJunkie
Found out how to do this a much more simple way. Thanks for all the help even though most was reference :) Again, thanks! -Chris
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by codeorder
Care to share Chris, or is it a confidential type of "my coder's bag of goodies" item?
Re: Help With Closing Processes
Programming
Software Development
13 Years Ago
by codeorder
Off topic? Send a p.m. and thank Dani for this handy p.m.'ing option to keep threads a little more on topic, especially for an IT forum. Then send me a p.m. If needed; otherwise, just a Hobbyist Programmer here.
Re: someone to guide me to repair my code
Programming
Software Development
13 Years Ago
by Reverend Jim
You have a typo in the for loop. You mistyped "proc" as "porc". As far as I know, you can't lock the screen by killing explorer.exe. It can always be started again from task manager (which can be activated from the keyboard). However, you CAN lock the workstation by executing the following command rundll32 user32.dll,…
Re: someone to guide me to repair my code
Programming
Software Development
13 Years Ago
by adam_k
I've commented just now on the same topic, so read here: [url]http://www.daniweb.com/software-development/vbnet/threads/400782[/url]
Re: windows problems...
Hardware and Software
Microsoft Windows
21 Years Ago
by Tekmaven
Here is the answer to your Services.exe problem: [url="http://support.microsoft.com/default.aspx?kbid=328885"]http://support.microsoft.com/default.aspx?kbid=328885[/url] Your svchost.exe problem may not be to simple. Svchost.exe runs DLL files. Follow the link that will appear after this paragraph, and run the utility to see what …
1
2
3
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC