Click here to Skip to main content
15,913,939 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: dynamic array sizes Pin
Waldermort18-Nov-06 7:33
Waldermort18-Nov-06 7:33 
GeneralRe: dynamic array sizes Pin
PJ Arends18-Nov-06 7:38
professionalPJ Arends18-Nov-06 7:38 
GeneralRe: dynamic array sizes Pin
Waldermort18-Nov-06 7:46
Waldermort18-Nov-06 7:46 
AnswerRe: dynamic array sizes Pin
Michael Dunn18-Nov-06 14:00
sitebuilderMichael Dunn18-Nov-06 14:00 
AnswerRe: dynamic array sizes Pin
Christian Graus18-Nov-06 14:15
protectorChristian Graus18-Nov-06 14:15 
AnswerRe: dynamic array sizes Pin
David Crow20-Nov-06 3:25
David Crow20-Nov-06 3:25 
QuestionPostMessageand SendMessage Pin
neha.agarwal2718-Nov-06 1:46
neha.agarwal2718-Nov-06 1:46 
AnswerRe: PostMessageand SendMessage Pin
Arman S.18-Nov-06 6:59
Arman S.18-Nov-06 6:59 
Hi,

Actually, you'd use PostMessage if your dlg were modeless.
Probably not. The save button closes the dlg, but after that you hold the C++ object of that dlg. So you can retrieve the entered values from the dlg and pass them to the list ctrl;

<br />
CMyDlg dlg;<br />
if (IDOK == dlg.DoModal())<br />
{ // Save button was pressed<br />
    CString val1 = dlg.m_val1;<br />
    // .. and so on<br />
<br />
    m_list.Add (val1); // something like this<br />
}


--
======
Arman

Questionhow to register ATL COM object in MFC Pin
kiranin17-Nov-06 23:56
kiranin17-Nov-06 23:56 
AnswerRe: how to register ATL COM object in MFC Pin
ThatsAlok18-Nov-06 0:47
ThatsAlok18-Nov-06 0:47 
GeneralRe: how to register ATL COM object in MFC Pin
kiranin18-Nov-06 0:53
kiranin18-Nov-06 0:53 
QuestionAdd context menu item through MFC Application Pin
kiranin17-Nov-06 23:59
kiranin17-Nov-06 23:59 
AnswerRe: Add context menu item through MFC Application Pin
ThatsAlok18-Nov-06 0:47
ThatsAlok18-Nov-06 0:47 
GeneralRe: Add context menu item through MFC Application Pin
kiranin18-Nov-06 0:59
kiranin18-Nov-06 0:59 
GeneralRe: Add context menu item through MFC Application Pin
Hamid_RT18-Nov-06 1:08
Hamid_RT18-Nov-06 1:08 
GeneralRe: Add context menu item through MFC Application Pin
ThatsAlok18-Nov-06 1:28
ThatsAlok18-Nov-06 1:28 
QuestionSHGetFolderLocation() function gives compile time error. Pin
Sameer_Thakur17-Nov-06 21:40
Sameer_Thakur17-Nov-06 21:40 
AnswerRe: SHGetFolderLocation() function gives compile time error. Pin
Hamid_RT17-Nov-06 23:47
Hamid_RT17-Nov-06 23:47 
GeneralRe: SHGetFolderLocation() function gives compile time error. Pin
Sameer_Thakur18-Nov-06 0:40
Sameer_Thakur18-Nov-06 0:40 
GeneralRe: SHGetFolderLocation() function gives compile time error. Pin
Hamid_RT18-Nov-06 1:05
Hamid_RT18-Nov-06 1:05 
GeneralRe: SHGetFolderLocation() function gives compile time error. Pin
Sameer_Thakur18-Nov-06 5:02
Sameer_Thakur18-Nov-06 5:02 
GeneralRe: SHGetFolderLocation() function gives compile time error. Pin
Hamid_RT18-Nov-06 5:23
Hamid_RT18-Nov-06 5:23 
GeneralRe: SHGetFolderLocation() function gives compile time error. Pin
Sameer_Thakur18-Nov-06 5:31
Sameer_Thakur18-Nov-06 5:31 
GeneralRe: SHGetFolderLocation() function gives compile time error. Pin
Hamid_RT18-Nov-06 7:05
Hamid_RT18-Nov-06 7:05 
GeneralRe: SHGetFolderLocation() function gives compile time error. Pin
David Crow20-Nov-06 3:27
David Crow20-Nov-06 3:27 

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.