Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 1.06 KB

when-to-initialize-cwnd-objects.md

File metadata and controls

20 lines (14 loc) · 1.06 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: When to Initialize CWnd Objects
When to Initialize CWnd Objects
11/04/2016
window objects [MFC], when to initialize CWnd
initializing CWnd objects [MFC]
initializing objects [MFC], CWnd
CWnd objects [MFC], when HWND is attached
HWND, when attached to CWnd object
CWnd objects [MFC], when to initialize
4d31bcb1-73db-4f2f-b71c-89b087569a10

When to Initialize CWnd Objects

You cannot create your own child windows or call any Windows API functions in the constructor of a CWnd-derived object. This is because the HWND for the CWnd object has not been created yet. Most Windows-specific initialization, such as adding child windows, must be done in an OnCreate message handler.

What do you want to know more about

See also

Using Frame Windows