About 85,200 results
Open links in new tab
  1. CreateWindowA macro (winuser.h) - Win32 apps | Microsoft Learn

    Feb 9, 2023 · The winuser.h header defines CreateWindow as an alias that automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor …

  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. CreateWindow • Win32 Programmer's Reference • WinAPI Reference

    The CreateWindow function creates an overlapped, pop-up, or child window. It specifies the window class, window title, window style, and (optionally) the initial position and size of the window.

  4. Windows Programming/Window Creation - Wikibooks

    Dec 2, 2024 · It is possible to create a dialog box by defining a WNDCLASS and calling CreateWindow, but Windows already has all the definitions stored internally, and provides a number of easy tools to …

  5. C++ CreateWindow: A Quick Guide to Crafting Windows

    In this comprehensive guide, we’ve walked through the key aspects of using `CreateWindow` in C++. Through understanding the WinAPI, registering window classes, and managing message loops, you …

  6. Create a window - Win32 apps | Microsoft Learn

    Mar 9, 2023 · Learn how to create a window as the first step in this sample module for your first Windows program.

  7. sdk-api/sdk-api-src/content/winuser/nf-winuser-createwindowa ... - GitHub

    The winuser.h header defines CreateWindow as an alias that automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant.

  8. Win32: Create Window | RoveCoder

    A window is created with the function CreateWindow. Details of the window is populated inside the window register structure WNDCLASSEX and registered with RegisterClassEx.

  9. Win32 API Tutorial => Creating a window

    Learn Win32 API - Creating a windowWhen programming for Windows, you will have to get used to the Win32 types, which are aliases for builtin types. These types are in all caps. The alias types used in …

  10. createwindowex (user32) - pinvoke.net

    /// The CreateWindowEx function creates an overlapped, pop-up, or child window with an extended window style; otherwise, this function is identical to the CreateWindow function.