Click here to Skip to main content
15,915,764 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRE: GUI Toolkit Pin
mjf20-Jan-00 10:29
mjf20-Jan-00 10:29 
GeneralScreensaver Pin
Andreas Jaeger13-Jan-00 6:17
Andreas Jaeger13-Jan-00 6:17 
QuestionHow to use ADO without #import directive? Pin
Anonymous13-Jan-00 5:51
suss Anonymous13-Jan-00 5:51 
GeneralUsing #Import Pin
Matthias Steinbart13-Jan-00 0:42
sussMatthias Steinbart13-Jan-00 0:42 
Questionhide application from task-bar, task-manager? Pin
Nick Hodapp12-Jan-00 9:01
sitebuilderNick Hodapp12-Jan-00 9:01 
AnswerRE: hide application from task-bar, task-manager? Pin
Anonymous12-Jan-00 11:39
suss Anonymous12-Jan-00 11:39 
GeneralTab Control Pin
Brigg Thorp30-Dec-99 2:10
Brigg Thorp30-Dec-99 2:10 
GeneralRE: Tab Control Pin
softdiy30-Dec-99 21:33
softdiy30-Dec-99 21:33 
look this code:
BOOL CYouChildDlg::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
BOOL bHandledMsg = FALSE;


switch (pMsg->message)
{
case WM_KEYDOWN:
{
switch (pMsg->wParam)
{
// hitting escape while searching for password edits
// should only stop the search for password edits and
// not kill app
case VK_ESCAPE:
bHandledMsg = TRUE;
break;

case VK_RETURN :
bHandledMsg = TRUE;
break;

default: break;
} // switch (pMsg->wParam)

}

break;

default: break;
} // switch (pMsg->message)

return (bHandledMsg ? TRUE : CDialog::PreTranslateMessage(pMsg));

}

GeneralGradient filled text Pin
Helge30-Dec-99 1:48
Helge30-Dec-99 1:48 
Generaldrag&drop between a combobox and a CChildFrame derived class Pin
Michael Ang30-Dec-99 1:30
Michael Ang30-Dec-99 1:30 
General??!!!! Problem with scrolling and big files in MFC Pin
Magnus28-Dec-99 8:52
Magnus28-Dec-99 8:52 
GeneralISupportErorrInfo Pin
Henk27-Dec-99 21:08
Henk27-Dec-99 21:08 
GeneralRE: ISupportErorrInfo Pin
Alex Gorev3-Jan-00 5:46
Alex Gorev3-Jan-00 5:46 
GeneralRegister Class in a Dialog Based Application Pin
Member 81025-Dec-99 3:53
Member 81025-Dec-99 3:53 
GeneralRE: Register Class in a Dialog Based Application Pin
Dmitriy3-Jan-00 4:51
Dmitriy3-Jan-00 4:51 
GeneralRE: RE: Register Class in a Dialog Based Application Pin
Member 8104-Jan-00 23:19
Member 8104-Jan-00 23:19 
GeneralRE: RE: RE: Register Class in a Dialog Based Application Pin
Tom Hunter5-Jan-00 1:28
Tom Hunter5-Jan-00 1:28 
GeneralRE: RE: RE: RE: Register Class in a Dialog Based Application Pin
Member 8106-Jan-00 1:55
Member 8106-Jan-00 1:55 
GeneralI need table convert color string to RGB in HTML Pin
Kobe24-Dec-99 7:31
Kobe24-Dec-99 7:31 
QuestionFont size problem ??? Pin
Kobe24-Dec-99 0:10
Kobe24-Dec-99 0:10 
AnswerRE: Font size problem ??? Pin
Alex Gorev3-Jan-00 4:57
Alex Gorev3-Jan-00 4:57 
AnswerRE: Font size problem ??? Pin
Andrei Zenkovitch3-Jan-00 8:15
Andrei Zenkovitch3-Jan-00 8:15 
AnswerRE: Font size problem ??? Pin
Tom Hunter5-Jan-00 1:38
Tom Hunter5-Jan-00 1:38 
GeneralRegisterWindowsMessage Pin
Member 351722-Dec-99 16:05
Member 351722-Dec-99 16:05 
GeneralRE: RegisterWindowsMessage Pin
Sadhu23-Dec-99 2:29
Sadhu23-Dec-99 2:29 

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.