Application name
-
Hi, I want to list all the application running in my machine currently. Is there any API which gives me that information. I used Process32First() and Process32Next() APIs to get the process list. Anything similar to this for the Application list? Kindly help.... Vini
-
Hi, I want to list all the application running in my machine currently. Is there any API which gives me that information. I used Process32First() and Process32Next() APIs to get the process list. Anything similar to this for the Application list? Kindly help.... Vini
Are you speaking about the TaskManagers tab "Applications"? Then
EnumWindows
is possibly what you're looking for. -
Are you speaking about the TaskManagers tab "Applications"? Then
EnumWindows
is possibly what you're looking for. -
Mike Nordell wrote: Are you speaking about the TaskManagers tab "Applications"? Then EnumWindows is possibly what you're looking for. yes.. I want all the currently running application like in the taskmanager. Tnx for the help. I'll try this . Vini
-
Hi, I want to list all the application running in my machine currently. Is there any API which gives me that information. I used Process32First() and Process32Next() APIs to get the process list. Anything similar to this for the Application list? Kindly help.... Vini
Use EnumProcess! There are some articles on CP. A. Riazi
-
Look at he code provided in this article[^]. The functions
FillList
andListWindows
should help you retrieving the app names. ~RaGE();