Click here to Skip to main content
15,909,373 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: playing with strings Pin
Yustme17-Sep-06 6:51
Yustme17-Sep-06 6:51 
QuestionExporting form a C++/CLR dll Pin
avimitrani17-Sep-06 5:03
avimitrani17-Sep-06 5:03 
Questionincluding gdiplus Pin
erfi17-Sep-06 2:06
erfi17-Sep-06 2:06 
AnswerRe: including gdiplus Pin
bob1697217-Sep-06 4:16
bob1697217-Sep-06 4:16 
AnswerRe: including gdiplus Pin
Christian Graus17-Sep-06 11:15
protectorChristian Graus17-Sep-06 11:15 
QuestionComboBox Problem Pin
mikobi17-Sep-06 1:54
mikobi17-Sep-06 1:54 
AnswerRe: ComboBox Problem [modified] Pin
Hamid_RT17-Sep-06 2:15
Hamid_RT17-Sep-06 2:15 
GeneralRe: ComboBox Problem Pin
mikobi17-Sep-06 19:54
mikobi17-Sep-06 19:54 
I don't know what you call by snipped code; Is it this :
void posteagent::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
//{{AFX_DATA_MAP(posteagent)
DDX_CBString(pDX, IDC_agtlog, m_agtlog);
DDV_MaxChars(pDX, m_agtlog, 1);
DDX_CBString(pDX, IDC_catego, m_catego);
DDV_MaxChars(pDX, m_catego, 3);
DDX_CBString(pDX, IDC_codebq, m_codebq);
DDV_MaxChars(pDX, m_codebq, 10);
DDX_CBString(pDX, IDC_commis, m_commis);
DDV_MaxChars(pDX, m_commis, 1);
DDX_Text(pDX, IDC_datcom, m_datcom);
DDV_MaxChars(pDX, m_datcom, 10);
DDX_Text(pDX, IDC_datsor, m_datsor);
DDV_MaxChars(pDX, m_datsor, 10);
DDX_CBString(pDX, IDC_equipe, m_equipe);
DDV_MaxChars(pDX, m_equipe, 10);
DDX_CBString(pDX, IDC_fonction, m_fonction);
DDV_MaxChars(pDX, m_fonction, 20);
DDX_Text(pDX, IDC_grades, m_grades);
DDV_MaxChars(pDX, m_grades, 2);
DDX_Text(pDX, IDC_INSS, m_inss);
DDV_MaxChars(pDX, m_inss, 15);
DDX_Text(pDX, IDC_lniveau, m_lniveau);
DDX_Text(pDX, IDC_lsieges, m_lsieges);
DDX_CBString(pDX, IDC_Niveau, m_niveau);
DDV_MaxChars(pDX, m_niveau, 15);
DDX_CBString(pDX, IDC_siege, m_siege);
DDV_MaxChars(pDX, m_siege, 2);
DDX_CBString(pDX, IDC_sortie, m_sortie);
DDV_MaxChars(pDX, m_sortie, 1);
DDX_Text(pDX, IDC_numbq, m_numbq);
DDV_MaxChars(pDX, m_numbq, 20);
DDX_CBString(pDX, IDC_dtpaie, m_dtpaie);
DDV_MaxChars(pDX, m_dtpaie, 1);
DDX_CBString(pDX, IDC_syndicat, m_syndicat);
DDV_MaxChars(pDX, m_syndicat, 10);
//}}AFX_DATA_MAP
}
When I clic on combobox dtpaie , data disappear on grades.
And write Updatedata(false) when I click on search button so that data are shown on some controls.
AnswerRe: ComboBox Problem Pin
Nibu babu thomas17-Sep-06 17:43
Nibu babu thomas17-Sep-06 17:43 
Questiongdiplus.h including problem [modified] Pin
erfi17-Sep-06 1:43
erfi17-Sep-06 1:43 
AnswerRe: gdiplus.h including problem Pin
Hamid_RT17-Sep-06 1:46
Hamid_RT17-Sep-06 1:46 
GeneralRe: gdiplus.h including problem Pin
erfi17-Sep-06 1:53
erfi17-Sep-06 1:53 
GeneralRe: gdiplus.h including problem Pin
Hamid_RT17-Sep-06 2:11
Hamid_RT17-Sep-06 2:11 
GeneralRe: gdiplus.h including problem Pin
erfi17-Sep-06 2:16
erfi17-Sep-06 2:16 
QuestionNew To C++ Pin
Mark_Murphy17-Sep-06 1:06
Mark_Murphy17-Sep-06 1:06 
AnswerRe: New To C++ Pin
Hamid_RT17-Sep-06 1:40
Hamid_RT17-Sep-06 1:40 
GeneralRe: New To C++ Pin
Mark_Murphy17-Sep-06 1:51
Mark_Murphy17-Sep-06 1:51 
GeneralRe: New To C++ Pin
Hamid_RT17-Sep-06 2:07
Hamid_RT17-Sep-06 2:07 
GeneralRe: New To C++ Pin
Mark_Murphy17-Sep-06 2:12
Mark_Murphy17-Sep-06 2:12 
GeneralRe: New To C++ [modified] Pin
erfi17-Sep-06 2:25
erfi17-Sep-06 2:25 
GeneralRe: New To C++ Pin
Mark_Murphy17-Sep-06 2:34
Mark_Murphy17-Sep-06 2:34 
GeneralRe: New To C++ Pin
erfi17-Sep-06 2:37
erfi17-Sep-06 2:37 
GeneralRe: New To C++ Pin
erfi17-Sep-06 3:56
erfi17-Sep-06 3:56 
GeneralRe: New To C++ Pin
Mark_Murphy17-Sep-06 4:29
Mark_Murphy17-Sep-06 4:29 
AnswerRe: New To C++ Pin
Christian Graus17-Sep-06 11:18
protectorChristian Graus17-Sep-06 11:18 

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.