1 Topic

Member Avatar for codehelper123

The last few days I've been attempting to make a popup window with a menu outside of the WinMain class. [code]void CMFToolbar::GetQuote() { InitCommonControls(); if(m_pBrowser) { WNDCLASSEX wc; HWND hwnd; MSG Msg; wc.cbSize = sizeof(WNDCLASSEX); wc.style = 0; wc.lpfnWndProc = (WNDPROC)WndProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = GetModuleHandle(NULL); …

Member Avatar for codehelper123
1
84

The End.