Applications running

gpmaker

Member
Joined
Jun 3, 2004
Messages
24
How can i get the current applications running? I know how to get processes, but I need to know exact applications, I just need their title BTW
 
One way would be to check the process's MainWindowTitle property. If it's not an empty string (""), that means that it has a window and is most likely an "application".

This won't always work because some applications minimize to the system tray (like Outlook XP).

To get the title, check the ProcessName property.
 
Back
Top