Click here to Skip to main content
15,892,161 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju8-Sep-09 23:40
Vetukuri Raju8-Sep-09 23:40 
AnswerRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Adam Roderick J9-Sep-09 0:02
Adam Roderick J9-Sep-09 0:02 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju9-Sep-09 0:20
Vetukuri Raju9-Sep-09 0:20 
QuestionRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Adam Roderick J9-Sep-09 0:32
Adam Roderick J9-Sep-09 0:32 
AnswerRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju9-Sep-09 0:38
Vetukuri Raju9-Sep-09 0:38 
QuestionRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Adam Roderick J9-Sep-09 0:50
Adam Roderick J9-Sep-09 0:50 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju9-Sep-09 1:00
Vetukuri Raju9-Sep-09 1:00 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Adam Roderick J9-Sep-09 1:16
Adam Roderick J9-Sep-09 1:16 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju9-Sep-09 1:25
Vetukuri Raju9-Sep-09 1:25 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Adam Roderick J9-Sep-09 1:34
Adam Roderick J9-Sep-09 1:34 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju9-Sep-09 1:32
Vetukuri Raju9-Sep-09 1:32 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 [modified] Pin
Adam Roderick J9-Sep-09 2:07
Adam Roderick J9-Sep-09 2:07 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju9-Sep-09 2:20
Vetukuri Raju9-Sep-09 2:20 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju10-Sep-09 3:47
Vetukuri Raju10-Sep-09 3:47 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Stuart Dootson9-Sep-09 3:30
professionalStuart Dootson9-Sep-09 3:30 
GeneralRe: CVTRES : fatal error CVT1100: duplicate resource. type:DIALOG, name:PRINTSTATUS, language:0x0409 Pin
Vetukuri Raju9-Sep-09 3:42
Vetukuri Raju9-Sep-09 3:42 
QuestionHow use DDX_Radio in a CDialogBar Pin
Crownless8-Sep-09 23:26
Crownless8-Sep-09 23:26 
AnswerRe: How use DDX_Radio in a CDialogBar Pin
Richard MacCutchan8-Sep-09 23:32
mveRichard MacCutchan8-Sep-09 23:32 
GeneralRe: How use DDX_Radio in a CDialogBar Pin
Crownless8-Sep-09 23:40
Crownless8-Sep-09 23:40 
GeneralRe: How use DDX_Radio in a CDialogBar Pin
Cedric Moonen8-Sep-09 23:44
Cedric Moonen8-Sep-09 23:44 
GeneralRe: How use DDX_Radio in a CDialogBar Pin
Crownless9-Sep-09 0:15
Crownless9-Sep-09 0:15 
well... i'll try to explain better the situation...

i have a CDialogBar with this DoDataExchange:
void CMyDlgBar::DoDataExchange(CDataExchange* pDX)
{
   CDialogBar::DoDataExchange(pDX);

   DDX_Radio(pDX, IDC_RADIO1, miRadio);
}


i create my CDialogBar in my MainFrame and then i call a function for the initialization of my class.

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
   if(CFrameWnd::OnCreate(lpCreateStruct) == -1)
      return -1;

   mMyDlgbar.Create(this,
                    IDD_DLGBAR,
                    CBRS_LEFT | CBRS_HIDE_INPLACE,
                    IDD_DLGBAR);

   ShowControlBar(&mMyDlgbar, FALSE, FALSE);

   mMyDlgbar.InitDialog( );
	
   return 0;
}


My InitDialog function calls the UpdateData(FALSE) (or UpdateData(TRUE), it's the same).

void CMyDlgBar::InitDialog() 
{
   UpdateData(FALSE);
}


the UpdateData function calls the DoDataExchange of my class, i get the error on the DDX_Radio function.

No particular message is provided when i get the error.
GeneralRe: How use DDX_Radio in a CDialogBar Pin
Selvam R9-Sep-09 1:09
professionalSelvam R9-Sep-09 1:09 
GeneralRe: How use DDX_Radio in a CDialogBar Pin
SandipG 9-Sep-09 1:29
SandipG 9-Sep-09 1:29 
QuestionAllowing a control to receive mouse clicks while a modal dialog is up. Pin
Code-o-mat8-Sep-09 22:46
Code-o-mat8-Sep-09 22:46 
QuestionRe: Allowing a control to receive mouse clicks while a modal dialog is up. Pin
CPallini8-Sep-09 22:52
mveCPallini8-Sep-09 22:52 

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.