About 50 results
Open links in new tab
  1. Creating a win32 modal window with CreateWindow - Stack Overflow

    Apr 9, 2009 · I create a window with CreateWindow() and show it with ShowWindow(). But the parent window on which this was created should be disabled until user returns from this window, i.e. it …

  2. How should I create a child window in win32 while programming with …

    Roughly speaking, in the handler for the parent, where you wish to create the child, you call CreateWindow, passing in the window for the parent as the hwndParent - probably, you also want to …

  3. How to make multiple windows using Win32 API - Stack Overflow

    May 22, 2010 · Also the multiple createwindow functions could have been combined into one function. Note that the only difference between them was the wc.lpszClassName code line. But Windows are …

  4. Win32 C++ Create a Window and Procedure Within a Class

    Nov 28, 2013 · The Win32 API was originally designed with C in mind so this is one area where you have to use some work-arounds. One way to work around this would be to create a static method to …

  5. How to create a hidden window in C++ - Stack Overflow

    Jan 23, 2010 · In a win32/mfc environment what you need to do is create a class and inherit from CWnd like this:

  6. How to pass to CreateWindow win32 api the title bar string as function ...

    Dec 8, 2013 · Change the CreateWindow call to CreateWindowA, to explicitly call the ANSI version of the function. This would let you pass title to the function without conversion. You would need to …

  7. Win32: How to create a ListBox control using the CreateWindowExW ...

    6 I've been through multiple sites, documents and tutorials and they all say the same, that is, any control is nothing more than a window in Win32's API, hence one is able to use the CreateWindowExW() …

  8. How to create a Windows-style textbox in a C++ Win32 application

    Mar 12, 2017 · Instead of using CreateWindow, use CreateWindowEx and specify WS_EX_CLIENTEDGE as the first parameter. You can compare the styles of your created edit …

  9. WinAPI: Create a window with a specified client area size

    Oct 17, 2011 · I was wondering how can I create a window using Win32 API with a specific client area size. When trying to create a window using the following piece of code, the entire window is …

  10. Create window console inside main win32 window - Stack Overflow

    Feb 21, 2011 · 13 I have a win32 application that need to open a console like the games when tilde is pressed. I tought that the best solution is to use the CreateWindow function. Is this right? How could I …