![]() |
|
Process watching [VB.net][HELP] - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: Process watching [VB.net][HELP] (/Thread-Process-watching-VB-net-HELP) |
Process watching [VB.net][HELP] - FrostByte_mybb_import5923 - 04-20-2011 hey i need help with two things, how can i make it so that if a certain Process starts label changes e.g. firefox starts so label13.text = Firefox running i know how to start them but not detect them. RE: Process watching [VB.net][HELP] - Coder-san - 04-20-2011 Code: If Process.GetProcessesByName("firefox").Length >0 Then
'Running |