Click here to Skip to main content
15,919,028 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Resource ID not found even though exists Pin
Rajkumar R13-May-08 2:48
Rajkumar R13-May-08 2:48 
AnswerRe: Resource ID not found even though exists Pin
Iain Clarke, Warrior Programmer13-May-08 2:01
Iain Clarke, Warrior Programmer13-May-08 2:01 
GeneralRe: Resource ID not found even though exists [modified] Pin
kildareflare13-May-08 3:05
kildareflare13-May-08 3:05 
GeneralRe: Resource ID not found even though exists Pin
Iain Clarke, Warrior Programmer13-May-08 3:39
Iain Clarke, Warrior Programmer13-May-08 3:39 
GeneralRe: Resource ID not found even though exists [modified] Pin
kildareflare13-May-08 4:06
kildareflare13-May-08 4:06 
GeneralRe: Resource ID not found even though exists Pin
Iain Clarke, Warrior Programmer13-May-08 4:20
Iain Clarke, Warrior Programmer13-May-08 4:20 
GeneralRe: Resource ID not found even though exists Pin
kildareflare13-May-08 4:47
kildareflare13-May-08 4:47 
GeneralRe: Resource ID not found even though exists Pin
Iain Clarke, Warrior Programmer13-May-08 5:06
Iain Clarke, Warrior Programmer13-May-08 5:06 
I'm struggling to think of anything to suggest, except backing up your project, and getting rid of all controls except for one on this dialog(s), and grow forward from there.

Or maybe make a new pair of very boring dialogs - the choice is yours. When you have only one button on the dialog, you can do:

BOOL CMyTestDlg::OnInitDialog ()
{
   CWnd *pChild = GetWindow (GW_CHILD);
   int nID = 0;
   if (pChild)
      nID = pChild->GetDlgCtrlID ();

   return CDialog::OnInitDialog ();
}


and see how that works. If it shows a proper ID number for each languages button, then change it to a static control, and check that. Then build out.

In addition - the fact that you needed DS_NOFAILCREATE is a clue that something funky is going on.

Iain.

Plz sir... CPallini CPallini abuz drugz, plz plz help urgent.

GeneralRe: Resource ID not found even though exists Pin
kildareflare13-May-08 5:12
kildareflare13-May-08 5:12 
GeneralRe: Resource ID not found even though exists -RESOLVED Pin
kildareflare15-May-08 4:58
kildareflare15-May-08 4:58 
Questioncreate bitmap out of bytearray and display it on dialog ??? Pin
cmos12-May-08 23:45
cmos12-May-08 23:45 
AnswerRe: create bitmap out of bytearray and display it on dialog ??? Pin
Rajkumar R13-May-08 0:26
Rajkumar R13-May-08 0:26 
AnswerRe: create bitmap out of bytearray and display it on dialog ??? Pin
Mark Salsbery13-May-08 6:05
Mark Salsbery13-May-08 6:05 
GeneralRe: create bitmap out of bytearray and display it on dialog ??? [modified] Pin
cmos24-May-08 4:18
cmos24-May-08 4:18 
GeneralRe: create bitmap out of bytearray and display it on dialog ??? Pin
Mark Salsbery27-May-08 5:22
Mark Salsbery27-May-08 5:22 
QuestionNeed Help regarding regular expressions in VC 6.0 Pin
Member 372884112-May-08 23:43
Member 372884112-May-08 23:43 
AnswerRe: Need Help regarding regular expressions in VC 6.0 Pin
Rajkumar R12-May-08 23:59
Rajkumar R12-May-08 23:59 
QuestionCan't display dialogbox? Pin
ritz123412-May-08 23:07
ritz123412-May-08 23:07 
AnswerRe: Can't display dialogbox? Pin
ERLN13-May-08 0:15
ERLN13-May-08 0:15 
QuestionRe: Can't display dialogbox? Pin
David Crow13-May-08 2:58
David Crow13-May-08 2:58 
QuestionDoubt in DLL Pin
Hungry Developer12-May-08 22:57
Hungry Developer12-May-08 22:57 
AnswerRe: Doubt in DLL Pin
Cedric Moonen12-May-08 23:09
Cedric Moonen12-May-08 23:09 
AnswerRe: Doubt in DLL Pin
Rajkumar R12-May-08 23:10
Rajkumar R12-May-08 23:10 
GeneralRe: Doubt in DLL Pin
Hungry Developer13-May-08 1:14
Hungry Developer13-May-08 1:14 
AnswerRe: Doubt in DLL Pin
CPallini12-May-08 23:15
mveCPallini12-May-08 23:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.