What is the Dialog Id, and how do I get it?

Light Poster
25Jan2009,00:58   #1
xytor's Avatar
Hi, I created a few controls (some edits, a button) inside my window using CreateWindow.
For the HMENU parameter, i just put in some arbitrary values I predefined. I assumed that this is the dialog id.
However, when I use functions like SetDlgItemText, the second parameter, int nIDDlgItem, does not accept that HMENU id I gave it upon creation. (the function fails with error code ERROR_CONTROL_ID_NOT_FOUND)

What is nIDDlgItem, and how do I get it?
Go4Expert Founder
25Jan2009,07:22   #2
shabbir's Avatar
Every resource in MFC has an ID and you can get that with the combination of RC file and resource.h file values.

For Code you need to use the API GetDlgCtrlID function
Light Poster
25Jan2009,09:36   #3
xytor's Avatar
I am not using any resources, I'm just creating the controls using CreateWindow.
Do I need to create my own resource.h file with the id's?
Light Poster
25Jan2009,09:37   #4
xytor's Avatar
Oh, sorry, I didn't notice that reference to GetDlgCtrlID,
That should do it, thanks!
Light Poster
25Jan2009,09:44   #5
xytor's Avatar
unfortunately, it didn't work.
GetDlgCtrlID failed and returned 0. GetLastError also returned 0 after this.
How is this possible? The controls are created and visible on the page.
Go4Expert Founder
25Jan2009,11:20   #6
shabbir's Avatar
You need to show us some code.

Post it here.
Light Poster
25Jan2009,14:23   #7
xytor's Avatar
Actually, it was my mistake! I forgot to give it an id when creating it (and left it 0 by mistake)
Sorry for wasting your time. I wish this forum let new users delete their posts...
Go4Expert Founder
25Jan2009,14:42   #8
shabbir's Avatar
Yes they do when they cross some post count.
Go4Expert Member
26Jan2009,06:06   #9
yasirhs's Avatar
what??