Click here to Skip to main content
15,887,350 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRetrieving MySQL blob to GDI+ object without file access Pin
lbe8-Apr-04 11:29
lbe8-Apr-04 11:29 
GeneralRe: Retrieving MySQL blob to GDI+ object without file access Pin
PJ Arends8-Apr-04 15:39
professionalPJ Arends8-Apr-04 15:39 
GeneralRe: Retrieving MySQL blob to GDI+ object without file access Pin
lbe20-Apr-04 10:06
lbe20-Apr-04 10:06 
Generaldetect enter key in single line edit box Pin
Anonymous8-Apr-04 11:25
Anonymous8-Apr-04 11:25 
GeneralRe: detect enter key in single line edit box Pin
Anonymous8-Apr-04 13:23
Anonymous8-Apr-04 13:23 
GeneralRe: detect enter key in single line edit box Pin
gUrM33T8-Apr-04 14:59
gUrM33T8-Apr-04 14:59 
GeneralRe: detect enter key in single line edit box Pin
Timothy Grabrian8-Apr-04 16:02
professionalTimothy Grabrian8-Apr-04 16:02 
GeneralRe: detect enter key in single line edit box Pin
Renjith Ramachandran8-Apr-04 22:43
Renjith Ramachandran8-Apr-04 22:43 
in your Dialog class override the PreTranslateMessage(MSG* pMsg)
{
//check the keys in your case the enter key
if(pMsg->message == WM_KEYDOWN && pMsg->wParam ==VK_RETURN)
{
//chek is the focus is in your edit control
// let the Control id of your edit is IDC_EDIT1
CWnd *pWndFocus = GetFocus();
if (pWndFocus->GetDlgCtrlID() == IDC_EDIT1)
{
AfxMessageBox("Enter Key in your Editbox");
}
}
}
}

I want to change Myself..Can u help me? Smile | :)
GeneralNeed help with SDI app Pin
Daniel13248-Apr-04 10:35
Daniel13248-Apr-04 10:35 
GeneralRe: Need help with SDI app Pin
Michael P Butler8-Apr-04 10:47
Michael P Butler8-Apr-04 10:47 
GeneralRe: Need help with SDI app Pin
Daniel13248-Apr-04 10:48
Daniel13248-Apr-04 10:48 
GeneralRe: Need help with SDI app Pin
Renjith Ramachandran8-Apr-04 22:45
Renjith Ramachandran8-Apr-04 22:45 
GeneralStrategy question Pin
Cloaca8-Apr-04 9:55
Cloaca8-Apr-04 9:55 
GeneralRe: Strategy question Pin
Maxwell Chen8-Apr-04 18:57
Maxwell Chen8-Apr-04 18:57 
GeneralRe: Strategy question Pin
Cloaca9-Apr-04 8:54
Cloaca9-Apr-04 8:54 
GeneralRe: Strategy question Pin
Maxwell Chen11-Apr-04 16:16
Maxwell Chen11-Apr-04 16:16 
GeneralRe: Strategy question Pin
Cloaca12-Apr-04 5:13
Cloaca12-Apr-04 5:13 
QuestionMemory access from another app? Pin
Andrew Stampor8-Apr-04 9:49
Andrew Stampor8-Apr-04 9:49 
AnswerRe: Memory access from another app? Pin
Dominik Reichl8-Apr-04 10:07
Dominik Reichl8-Apr-04 10:07 
AnswerRe: Memory access from another app? Pin
Anonymous8-Apr-04 10:56
Anonymous8-Apr-04 10:56 
GeneralAdd NT Service support to existing MFC GUI App Pin
farzadb8-Apr-04 9:46
farzadb8-Apr-04 9:46 
GeneralRe: Add NT Service support to existing MFC GUI App Pin
Hashim Saleem8-Apr-04 14:27
Hashim Saleem8-Apr-04 14:27 
GeneralRe: Add NT Service support to existing MFC GUI App Pin
farzadb11-Apr-04 19:33
farzadb11-Apr-04 19:33 
Generaleasy_odbc compile problem Pin
intrinsic8-Apr-04 9:32
intrinsic8-Apr-04 9:32 
GeneralRe: easy_odbc compile problem Pin
Mike Dimmick9-Apr-04 0:26
Mike Dimmick9-Apr-04 0:26 

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.