FindWindowEx

G

Geky

HWND window = ::FindWindow(NULL,"Internet connect");
while(window == NULL)
{
window = ::FindWindow(NULL,"Internet connect");
}

HWND general = ::FindWindowEx(window,0,"General",NULL);

I retrieve always general as NULL. I'm using the internet connection
window with winXP where there are two tabs, general and details. How is
possible to retrieve the correct handle to general window?
 
J

Jack Klein

HWND window = ::FindWindow(NULL,"Internet connect");
while(window == NULL)
{
window = ::FindWindow(NULL,"Internet connect");
}

HWND general = ::FindWindowEx(window,0,"General",NULL);

I retrieve always general as NULL. I'm using the internet connection
window with winXP where there are two tabs, general and details. How is
possible to retrieve the correct handle to general window?

Post this to It is a
Windows API question, not a C++ language question.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,777
Messages
2,569,604
Members
45,224
Latest member
BettieToom

Latest Threads

Top