Click here to Skip to main content
15,880,796 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalconvertion of a count to DateTime format Pin
sam_software24-Dec-04 3:12
sam_software24-Dec-04 3:12 
GeneralRe: convertion of a count to DateTime format Pin
John R. Shaw25-Dec-04 7:52
John R. Shaw25-Dec-04 7:52 
GeneralA template question Pin
ThatsAlok24-Dec-04 1:14
ThatsAlok24-Dec-04 1:14 
GeneralRe: A template question Pin
Michael Dunn24-Dec-04 12:28
sitebuilderMichael Dunn24-Dec-04 12:28 
GeneralRe: A template question Pin
ThatsAlok25-Dec-04 16:25
ThatsAlok25-Dec-04 16:25 
GeneralToolbar (URGENT) Pin
24-Dec-04 0:29
suss24-Dec-04 0:29 
GeneralKeyboard Input - MFC Pin
sweep12324-Dec-04 0:27
sweep12324-Dec-04 0:27 
GeneralRe: Keyboard Input - MFC Pin
Abin24-Dec-04 15:09
Abin24-Dec-04 15:09 
You need to do it in PreTranslateMessage.

BOOL CMyDialog::PreTranslateMessage(MSG* pMsg) <br />
{<br />
	// TODO: Add your specialized code here and/or call the base class<br />
	if (pMsg->message == WM_KEYDOWN)<br />
	{<br />
		if (pMsg->wParam == some_key_code)<br />
		{<br />
			Do_SomeThing();<br />
		}<br />
	}<br />
<br />
	return CDialog::PreTranslateMessage(pMsg);<br />
}

GeneralRe: Keyboard Input - MFC Pin
Grahamfff25-Dec-04 22:50
Grahamfff25-Dec-04 22:50 
Generalhtmlhelp visual studio .net Pin
tiziacaia24-Dec-04 0:09
tiziacaia24-Dec-04 0:09 
GeneralRe: htmlhelp visual studio .net Pin
Alex Korchemniy24-Dec-04 10:08
Alex Korchemniy24-Dec-04 10:08 
GeneralRe: htmlhelp visual studio .net Pin
tiziacaia24-Dec-04 16:07
tiziacaia24-Dec-04 16:07 
GeneralRe: htmlhelp visual studio .net Pin
Anonymous24-Dec-04 19:30
Anonymous24-Dec-04 19:30 
QuestionHow to access Window Procedure of another processes window Pin
User 21559723-Dec-04 23:48
User 21559723-Dec-04 23:48 
QuestionWhy I can't run my app. on Win XP? Pin
ArielR23-Dec-04 23:36
ArielR23-Dec-04 23:36 
AnswerRe: Why I can't run my app. on Win XP? Pin
Aamir Butt23-Dec-04 23:39
Aamir Butt23-Dec-04 23:39 
GeneralRe: Why I can't run my app. on Win XP? Pin
ArielR23-Dec-04 23:45
ArielR23-Dec-04 23:45 
GeneralRe: Why I can't run my app. on Win XP? Pin
Steve S24-Dec-04 0:58
Steve S24-Dec-04 0:58 
GeneralRe: Why I can't run my app. on Win XP? Pin
ArielR28-Dec-04 2:25
ArielR28-Dec-04 2:25 
Generalfstream problem Pin
Imtiaz Murtaza23-Dec-04 23:01
Imtiaz Murtaza23-Dec-04 23:01 
GeneralRe: fstream problem Pin
Andrew Walker24-Dec-04 1:06
Andrew Walker24-Dec-04 1:06 
QuestionHow to display a Message when click on a Edit Box Scroll bar ? Pin
pubududilena23-Dec-04 22:17
pubududilena23-Dec-04 22:17 
AnswerRe: How to display a Message when click on a Edit Box Scroll bar ? Pin
Aamir Butt23-Dec-04 22:31
Aamir Butt23-Dec-04 22:31 
GeneralRe: How to display a Message when click on a Edit Box Scroll bar ? Pin
pubududilena23-Dec-04 22:40
pubududilena23-Dec-04 22:40 
Questioncan i make command buttons in vc++(like vb) Pin
siva_nkl3323-Dec-04 21:47
siva_nkl3323-Dec-04 21:47 

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.