Is it any possibility to make an activex window that looks exactly like IE
Internet Explorer Extension Development
Hi Eli,
I think you will find that this is a Windows Theme setting for Windows XP. Using the Windows Classic Theme should make everything look consistant.
Regards
HWND hwnd = (HWND)0x0167077A; // some hwnd I found using spy++
RECT rect;
GetClientRect(hwnd, &rect);
CAxWindow browser;
browser.Create(hwnd, rect, _T(""), WS_CHILD | WS_VISIBLE, 0);
// message loop
IsAppThemed() returns FALSE
Which answers your question: if the app says "I don't do themes", you get the un-themed window adornments.