Click here to Skip to main content
15,908,843 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 4:43
Mark Salsbery29-May-07 4:43 
GeneralRe: Cannot write in EditBox Pin
David Crow29-May-07 4:58
David Crow29-May-07 4:58 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 5:09
Mark Salsbery29-May-07 5:09 
GeneralRe: Cannot write in EditBox Pin
garfield18529-May-07 5:11
garfield18529-May-07 5:11 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 5:16
Mark Salsbery29-May-07 5:16 
GeneralRe: Cannot write in EditBox Pin
garfield18529-May-07 5:22
garfield18529-May-07 5:22 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 5:26
Mark Salsbery29-May-07 5:26 
GeneralRe: Cannot write in EditBox Pin
garfield18529-May-07 5:33
garfield18529-May-07 5:33 
I use the PreTranslateMessage to check if the user presses Enter to prevent the Dialog from closing. The only thing written about that is this:

BOOL CSeLlamDlg::PreTranslateMessage(MSG* pMsg)
{
if(pMsg->wParam == VK_RETURN)
{
pMsg->wParam =NULL;
if (Selected==TRUE)
{
OnBtnadd();
}
}
return CDialog::PreTranslateMessage(pMsg);
}

Well, it should not make nothing right about it right?



Time to come clean...

Vive y deja vivir / Live and let live

Javier.

GeneralRe: Cannot write in EditBox Pin
Roger Stoltz29-May-07 5:51
Roger Stoltz29-May-07 5:51 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 5:59
Mark Salsbery29-May-07 5:59 
GeneralRe: Cannot write in EditBox Pin
Roger Stoltz29-May-07 6:16
Roger Stoltz29-May-07 6:16 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 6:29
Mark Salsbery29-May-07 6:29 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 5:52
Mark Salsbery29-May-07 5:52 
GeneralRe: Cannot write in EditBox Pin
garfield18529-May-07 6:04
garfield18529-May-07 6:04 
GeneralRe: Cannot write in EditBox Pin
Mark Salsbery29-May-07 6:09
Mark Salsbery29-May-07 6:09 
QuestionGraphing In Visual C++ Pin
simoncoul29-May-07 4:30
simoncoul29-May-07 4:30 
AnswerRe: Graphing In Visual C++ Pin
Cedric Moonen29-May-07 4:47
Cedric Moonen29-May-07 4:47 
GeneralRe: Graphing In Visual C++ Pin
simoncoul29-May-07 4:55
simoncoul29-May-07 4:55 
GeneralRe: Graphing In Visual C++ Pin
jhwurmbach29-May-07 6:22
jhwurmbach29-May-07 6:22 
GeneralRe: Graphing In Visual C++ Pin
simoncoul29-May-07 6:47
simoncoul29-May-07 6:47 
GeneralRe: Graphing In Visual C++ Pin
Mark Salsbery29-May-07 6:49
Mark Salsbery29-May-07 6:49 
GeneralRe: Graphing In Visual C++ Pin
Cedric Moonen29-May-07 10:06
Cedric Moonen29-May-07 10:06 
GeneralRe: Graphing In Visual C++ Pin
simoncoul30-May-07 3:01
simoncoul30-May-07 3:01 
GeneralRe: Graphing In Visual C++ Pin
ldsdbomber29-May-07 6:57
ldsdbomber29-May-07 6:57 
GeneralRe: Graphing In Visual C++ Pin
Cedric Moonen29-May-07 9:56
Cedric Moonen29-May-07 9:56 

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.