Click here to Skip to main content
15,894,720 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: cin issue Pin
Stephen Hewitt13-Mar-07 15:43
Stephen Hewitt13-Mar-07 15:43 
GeneralRe: cin issue Pin
CPallini13-Mar-07 21:52
mveCPallini13-Mar-07 21:52 
AnswerRe: cin issue Pin
Stephen Hewitt13-Mar-07 15:39
Stephen Hewitt13-Mar-07 15:39 
GeneralRe: cin issue Pin
Programm3r13-Mar-07 19:45
Programm3r13-Mar-07 19:45 
QuestionMFC - CBitmap BitBlt Pin
Rajesh Rajan Pankapattu13-Mar-07 7:32
Rajesh Rajan Pankapattu13-Mar-07 7:32 
AnswerRe: MFC - CBitmap BitBlt Pin
lafleon13-Mar-07 11:55
lafleon13-Mar-07 11:55 
Questionhow to add 24 bit color icons in VS.net editor Pin
OmarLodhi13-Mar-07 5:43
OmarLodhi13-Mar-07 5:43 
GeneralRe: how to add 24 bit color icons in VS.net editor Pin
Programm3r13-Mar-07 5:46
Programm3r13-Mar-07 5:46 
AnswerRe: how to add 24 bit color icons in VS.net editor Pin
Mark Salsbery13-Mar-07 7:10
Mark Salsbery13-Mar-07 7:10 
QuestionWeb services and win 32 Pin
LCI13-Mar-07 5:25
LCI13-Mar-07 5:25 
AnswerRe: Web services and win 32 Pin
led mike13-Mar-07 5:41
led mike13-Mar-07 5:41 
GeneralRe: Web services and win 32 Pin
LCI13-Mar-07 5:48
LCI13-Mar-07 5:48 
GeneralRe: Web services and win 32 Pin
led mike13-Mar-07 7:03
led mike13-Mar-07 7:03 
GeneralRe: Web services and win 32 Pin
Mark Salsbery13-Mar-07 7:26
Mark Salsbery13-Mar-07 7:26 
GeneralRe: Web services and win 32 Pin
led mike13-Mar-07 7:45
led mike13-Mar-07 7:45 
AnswerRe: Web services and win 32 Pin
led mike14-Mar-07 6:23
led mike14-Mar-07 6:23 
GeneralRe: Web services and win 32 Pin
LCI14-Mar-07 6:26
LCI14-Mar-07 6:26 
GeneralRe: Web services and win 32 Pin
LCI14-Mar-07 6:31
LCI14-Mar-07 6:31 
GeneralRe: Web services and win 32 Pin
led mike14-Mar-07 7:03
led mike14-Mar-07 7:03 
GeneralRe: Web services and win 32 Pin
LCI14-Mar-07 9:42
LCI14-Mar-07 9:42 
GeneralRe: Web services and win 32 Pin
led mike14-Mar-07 11:30
led mike14-Mar-07 11:30 
QuestionAccessing menu options from an embedded dialog Pin
Trevy13-Mar-07 5:17
Trevy13-Mar-07 5:17 
AnswerRe: Accessing menu options from an embedded dialog Pin
lucy13-Mar-07 5:42
lucy13-Mar-07 5:42 
I would assume you handle the menu by your main dialog, and pass the message down to your embedded dialog for further process. say,
CMyMainDialog::OnMenuCelsius ()
{
SendMessage (pEmbedDialog->m_hwnd, WUM_MENU_CELCIUS);
}

CMyEmbedDialog::WindowProc (UINT message, WPARAM wParam, LPARAM lParam )
{
if (message == WUM_MENU_CELCIUS)
{
/* display raw units to celcius values */
}
}
GeneralRe: Accessing menu options from an embedded dialog Pin
Trevy14-Mar-07 5:56
Trevy14-Mar-07 5:56 
GeneralRe: Accessing menu options from an embedded dialog Pin
lucy14-Mar-07 7:32
lucy14-Mar-07 7:32 

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.