View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Janie Janie is offline
external usenet poster
 
Posts: 48
Default List Applications That Are Running

I know Application.Caption will tell me the name of a running app showing in
the Taskbar. What I need is the right For Each collection so I can get the
names of all running apps.

In theory, something like:

For Each App in Taskbar
Debug.Print App.caption
Next App

I know I have seem this somewhere and can't locate it.

Thanks