I'm using a note program,it runs good most of the time,but sometimes it can't display in the Windows Notification bar(I'm not sure if this is the correct name), so i can't click the icon to maximum the program,if I tried to restart the program,it even can't display in the notification bar by ten times attempts.
So I want to write a tiny C# program
,Because I found that a lot of grammar is similar to java...(Let's call the program < tinyStarter >
) I want it to do one simple job:
using windows command line to call a target program,after a short while(5 seconds maybe),< tinyStarter >
will check if the program name list is in the right-down-corner of windows desktop (is it called Notification Bar?),if not,recalling the program until it displays.
I used spy++
to locate the target program's area,then it shows:
Handle:000100DE;
Caption:Notification area for user upgrade
Class:ToolbarWindow32
So the question is ,is there any chance to using C# to get program name list in ToolbarWindow32
,or at least the count of them?
I actually did some efforts to solve another problem , see the thread, so the question in this thread was not done much searching and trying yet,I ask the question here just because I hope this question can be soveld easily by some experts.When I was doing some efforts on the other problem,the note program can't be opened normally can be very annoyed after all.
Any help will be appreciated.