I am using the FindWindow and FindWindowEx funtions to get a handle to any windows application. (WORKING WITH MFC)
In order to do this I have to know the application's class name. For Example,
FindWindow("AOL Frame25", NULL) returns the handle to an AOL instance.
My problem is I'm trying to do FindWindow on an application for which I do not know the Class Name, How do I find out what the class name for an application is?
In the example I gave above, "AOL Frame25" is the name of the Class for the AOL application, but I found this by digging around on the web. But the application I want to work with is not as popular as AOL.
Any tips would be appreciated.
Thanks.
In order to do this I have to know the application's class name. For Example,
FindWindow("AOL Frame25", NULL) returns the handle to an AOL instance.
My problem is I'm trying to do FindWindow on an application for which I do not know the Class Name, How do I find out what the class name for an application is?
In the example I gave above, "AOL Frame25" is the name of the Class for the AOL application, but I found this by digging around on the web. But the application I want to work with is not as popular as AOL.
Any tips would be appreciated.
Thanks.