Tagged Questions

5
votes
6answers
590 views

How can I keep track of (enumerate) all classes that implement an interface

I have a situation where I have an interface that defines how a certain class behaves in order to fill a certain role in my program, but at this point in time I'm not 100% sure how many classes I will ...
1
vote
1answer
334 views

enumerating child windows

A couple of weeks ago someone here helped me out with writing a class that enumerates all main windows. Today I tried to modify that class in order to enumerate all child windows of a specific parent ...
1
vote
2answers
585 views

Programmatically move registry keys

Does anyone know how I can programmaically move a registry from HKEY_LOCAL_MCAHINE to HKEY_CURRENT_USER? I wrote a recursive function that uses RegEnumKeyEx and RegEnumValue, but it appears that ...
0
votes
2answers
103 views

C++/Win32 enumerate windows belonging to my process & close them

I have a Windows app that houses a web browser (Internet explorer) embedded in it. The app can be closed from another process by means of IPC. It works just fine except the situation when the embedded ...