Thread: open a blank window in C

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Jan 2024
    Posts
    3
    call ShowWindow,
    ```
    HWND hWnd = CreateWindowW(L"myWindowClass",L"My Window",WS_EX_OVERLAPPEDWINDOW | WS_VISIBLE,100,100,500,500, NULL,NULL,NULL,NULL);


    ShowWindow(hWnd, SW_SHOWNORMAL);
    ```

  2. #2
    Registered User
    Join Date
    Jul 2022
    Posts
    78
    Quote Originally Posted by cuteblanket View Post
    call ShowWindow,
    ```
    HWND hWnd = CreateWindowW(L"myWindowClass",L"My Window",WS_EX_OVERLAPPEDWINDOW | WS_VISIBLE,100,100,500,500, NULL,NULL,NULL,NULL);


    ShowWindow(hWnd, SW_SHOWNORMAL);
    ```
    what's that for?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Open URL in new window
    By Magos in forum Windows Programming
    Replies: 1
    Last Post: 04-17-2006, 02:17 AM
  2. Keeping window open
    By jpipitone in forum C Programming
    Replies: 5
    Last Post: 12-01-2003, 12:56 PM
  3. new open/save window???
    By hostensteffa in forum Windows Programming
    Replies: 14
    Last Post: 06-26-2002, 12:12 PM
  4. Redrawing window blank
    By unanimous in forum Windows Programming
    Replies: 1
    Last Post: 04-06-2002, 09:12 PM
  5. How to open window maximized
    By Unregistered in forum Windows Programming
    Replies: 5
    Last Post: 02-04-2002, 04:29 PM

Tags for this Thread