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?
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
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?
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.
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...