Finiding the name of Opened windows which is on task bar
-
Hi all, I want to find out the name and path if all opened windows which is on task bar. Can anyone help me to get that??? Regards Lijo
-
Hi all, I want to find out the name and path if all opened windows which is on task bar. Can anyone help me to get that??? Regards Lijo
-
Thanks a lot for ur reply. but from that link i will get only process name.i want all application names which is on task bar.can u plse give me little more clear idea on this??? Regards Lijo
-
Thanks a lot for ur reply. but from that link i will get only process name.i want all application names which is on task bar.can u plse give me little more clear idea on this??? Regards Lijo
Lijo Rajan wrote:
i want all application names which is on task bar
Can you explain a bit more ? Your orignal question was to get all name of opened windows on task bar. The link provides alternate ways to achieve that. The simplest being,
if (p.MainWindowHandle != 0) { // This is a GUI process } else { // this is a non-GUI / invisible process }
You get all processes using Process.GetProcesses and then loop to check as above. But there are other better means using Window's API which is also mentioned in the post.