No MFC! I am using WIN 32 API.
My problem is my child window will not highlight or look active (blue title bar) when I bring it up.
I want it to be a child window inside my main. My code is as follows:
hScopeWnd = CreateWindow(szScopeClass,"Scope",WS_CAPTION | WS_CHILD | WS_SYSMENU |...
I have already tried WS_OVERLAPPEDWINDOW | WS_MAXIMIZE to no avail.
When I used WS_OVERLAPPED | WS_POPUP, the executable started but was only displayed as what appeared to be minimized along the Windows bar at the bottom of my screen. When I tried to right click to maximize or left click to...
I am using Win 32 API (No MFC) and am trying to set the application's initial size to full screen. This is what I currently have:
hWnd=CreateWindow(szWindowClass,szTitle,WS_OVERLAPPEDWINDOW,CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
I searched MSDN for help and found...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.