Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. lhilliard

    Getting a child window active

    SetForegroundWindow did not help.
  2. lhilliard

    Getting a child window active

    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 |...
  3. lhilliard

    Help changing application's size to full screen at startup

    ShowWindow(hWnd,SW_MAXIMIZE) worked. Thanks Thierry!
  4. lhilliard

    Help changing application's size to full screen at startup

    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...
  5. lhilliard

    RADIO BOX CONTROL

    Try: CheckDlgButton(hDlg,ID_BUTTON_NAME,BST_CHECKED); I hope this helps. lhilliard
  6. lhilliard

    Help changing application's size to full screen at startup

    I tried that and there was no difference. The screen did not come up maximized. Any other ideas?
  7. lhilliard

    Help changing application's size to full screen at startup

    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...

Part and Inventory Search

Back
Top