Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CDialogBar create()

Status
Not open for further replies.

mianaziz

Programmer
Jun 19, 2002
18
0
0
PK
In CDialogBar::Create ( CWnd* pParentWnd, LPCTSTR lpszTemplateName, UINT nStyle, UINT nID );
where lpszTemplateName

A pointer to the name of the CDialogBar object’s dialog-box resource template.
what its meen and how i can get this lpszTemplateName???????

i have designed the dialogbar also.but its ID did nor work.

and what is differance between "dialog template ID" and " Control ID".

do help me.

bye
 
It's the name of the Dialog resource that you would have created to implement in your programme. Use the ID name in as the final UINT nID as well.

The dialog template ID is the IDD_dialog_name for the dialog bar itself.
The control ID is the IDC_control_name of say a button or combobox that is placed on the resource.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top