SAMPLE: Dialog Templates in MemoryID: Q155257
|
Dialog boxes can be created by using templates in resources or from
templates built in memory at run time. The sample contains a class
CDlgTempl, which can be used to create these templates in memory. This
class provides an easy interface for building and manipulating templates in
memory.
The following file is available for download from the Microsoft
Software Library:
~ Dlgtpl32.exeFor more information about downloading files from the Microsoft Software Library, please see the following article in the Microsoft Knowledge Base:
Q119591 How to Obtain Microsoft Support Files from Online Services
The DLGTEMPLATE and DLGITEMTEMPLATE structures are used for building
templates in memory. These structures are not fixed-length structures. They
also must aligned properly.
This sample provides a class to build these structures correctly. It also
provides the ability to read a template from the resource and then
manipulate them. Some of the important functions are:
SetDlgTemplate Sets some of the properties of the dialog box.The sample illustrates using the class by loading the about box from resource and changing the Caption for the dialog box.
SetCaption Sets the caption for the dialog box.
AddControl Adds a control to the template.
RemoveControl Removes a control from the template.
MoveControl Changes the TAB order of the control.
LockTemplate Returns a pointer to memory that contains the dialog box template in a form that can be used with CreateDialogIndirect.
UnlockTemplate Should be called to free the memory allocated by LockTemplate.
CreateTemplateInMemory Fills the memory passed into the function with the dialog box template.
FromResource Initializes the object with information from the template in resource.
See the Win32 SDK.
Additional query words: 4.00 4.10 4.20 DLGTEMPLATE DLGITEMTEMPLATE
Keywords : kbsample kbnokeyword kbMFC kbVC
Version : 4.00 4.10 4.20
Platform : NT WINDOWS
Issue type :
Last Reviewed: July 28, 1999