Click here to Skip to main content
15,914,408 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Save image from picturebox use MFC Pin
mbue9-Dec-10 12:16
mbue9-Dec-10 12:16 
GeneralRe: Save image from picturebox use MFC Pin
tagopi9-Dec-10 17:08
tagopi9-Dec-10 17:08 
GeneralRe: Save image from picturebox use MFC Pin
josipahutar11-Dec-10 7:27
josipahutar11-Dec-10 7:27 
GeneralRe: Save image from picturebox use MFC Pin
josipahutar11-Dec-10 7:38
josipahutar11-Dec-10 7:38 
GeneralRe: Save image from picturebox use MFC Pin
tagopi12-Dec-10 17:08
tagopi12-Dec-10 17:08 
GeneralRe: Save image from picturebox use MFC Pin
josipahutar13-Dec-10 7:29
josipahutar13-Dec-10 7:29 
GeneralRe: Save image from picturebox use MFC Pin
tagopi16-Dec-10 16:45
tagopi16-Dec-10 16:45 
Question890918 - keystroke seems not to generate the desired command Pin
ilostmyid29-Dec-10 6:45
professionalilostmyid29-Dec-10 6:45 
hi i defined an accelerator Ctrl+T to generate ID_TMPDLG. i put
ON_COMMAND(ID_TMPDLG, &Ct2App::OnTmpDlg)
but the function is not called. i tried to see whether to message for the accelerator is generated correctly and i tested it in:
BOOL Ct2App::PreTranslateMessage(MSG* pMsg)
{
	// TODO: Add your specialized code here and/or call the base class
	if (pMsg->message == WM_KEYDOWN && pMsg->wParam == 'T')
		return CWinAppEx::PreTranslateMessage(pMsg);
	return CWinAppEx::PreTranslateMessage(pMsg);
}
by defining a break point, i realized that the line is hit and the message is produced correctly. but i don't know why the command ID_TMPDLG is not generated or received by the application. i tried to handle the command in another places like main frame and child view, but it didn't help and the command is not still generated or received. i don't know whether the accelerator message is not converted into the command or the message is lost somewhere.
what can i do?
thx
AnswerRe: 890918 - keystroke seems not to generate the desired command Pin
mbue9-Dec-10 12:25
mbue9-Dec-10 12:25 
GeneralRe: 890918 - keystroke seems not to generate the desired command Pin
ilostmyid210-Dec-10 3:53
professionalilostmyid210-Dec-10 3:53 
GeneralRe: 890918 - keystroke seems not to generate the desired command Pin
mbue10-Dec-10 8:59
mbue10-Dec-10 8:59 
GeneralRe: 890918 - keystroke seems not to generate the desired command Pin
ilostmyid219-Dec-10 0:38
professionalilostmyid219-Dec-10 0:38 
Questionfull path of a process Pin
zon_cpp8-Dec-10 23:46
zon_cpp8-Dec-10 23:46 
AnswerRe: full path of a process Pin
CPallini9-Dec-10 0:12
mveCPallini9-Dec-10 0:12 
GeneralRe: full path of a process [modified] Pin
zon_cpp9-Dec-10 0:28
zon_cpp9-Dec-10 0:28 
QuestionRe: full path of a process Pin
CPallini9-Dec-10 0:37
mveCPallini9-Dec-10 0:37 
AnswerRe: full path of a process Pin
zon_cpp9-Dec-10 0:41
zon_cpp9-Dec-10 0:41 
GeneralRe: full path of a process Pin
CPallini9-Dec-10 0:53
mveCPallini9-Dec-10 0:53 
GeneralRe: full path of a process Pin
zon_cpp9-Dec-10 2:18
zon_cpp9-Dec-10 2:18 
GeneralRe: full path of a process Pin
CPallini9-Dec-10 2:29
mveCPallini9-Dec-10 2:29 
GeneralRe: full path of a process Pin
David Crow9-Dec-10 2:44
David Crow9-Dec-10 2:44 
QuestionAlignment of More Than Two Text in Correct Format for CListBox. Pin
janaswamy uday8-Dec-10 22:42
janaswamy uday8-Dec-10 22:42 
AnswerRe: Alignment of More Than Two Text in Correct Format for CListBox. Pin
Richard MacCutchan8-Dec-10 23:32
mveRichard MacCutchan8-Dec-10 23:32 
AnswerRe: Alignment of More Than Two Text in Correct Format for CListBox. Pin
krmed9-Dec-10 0:38
krmed9-Dec-10 0:38 
Questionsave image after setting transparency Pin
tagopi8-Dec-10 21:22
tagopi8-Dec-10 21:22 

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.