Click here to Skip to main content
15,921,463 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Too many variables !?! Pin
Christian Graus17-Nov-02 21:48
protectorChristian Graus17-Nov-02 21:48 
GeneralRe: Too many variables !?! Pin
Michael P Butler18-Nov-02 0:14
Michael P Butler18-Nov-02 0:14 
GeneralRe: Too many variables !?! Pin
nencini18-Nov-02 4:42
nencini18-Nov-02 4:42 
GeneralRe: Too many variables !?! Pin
Rickard Andersson2017-Nov-02 23:54
Rickard Andersson2017-Nov-02 23:54 
QuestionHow can i get mfc42ud.lib? Pin
sages17-Nov-02 16:09
sages17-Nov-02 16:09 
AnswerRe: How can i get mfc42ud.lib? Pin
Michael Dunn17-Nov-02 16:13
sitebuilderMichael Dunn17-Nov-02 16:13 
GeneralSHFileOperation Error 1026 Pin
J. Schermerhorn17-Nov-02 14:35
J. Schermerhorn17-Nov-02 14:35 
Questionis there any mistake in it ? Pin
imran_rafique17-Nov-02 13:53
imran_rafique17-Nov-02 13:53 
i am storing a lparam in callback recorder hook function in these lines of code.purpose is to store a keyboard event and replay it.
///////////////////////////////////////////////////////
struct S_ENODE {
	EVENTMSG	Event;
};
//////////////////////////////////////////////////////////
S_ENODE *g_lpLastEvent= (S_ENODE*)malloc(sizeof(S_ENODE));
LPEVENTMSG lpEvent= (LPEVENTMSG)lParam;

g_lpLastEvent->Event.message	= lpEvent->message;
		g_lpLastEvent->Event.paramL	= lpEvent->paramL;
		g_lpLastEvent->Event.paramH	= lpEvent->paramH;
		g_lpLastEvent->Event.time		= GetTickCount();//lpEvent->time;
		g_lpLastEvent->Event.hwnd		= NULL;
//////////////////////////////////////////////////////////

i am replaying it like that where
h is the handle of edit box. is there any mistake in it ?because it display nothing in edit box .
//////////////////////////////////////////////////////
::SendMessage(h, g_lpLastEvent->Event.message,(WPARAM) 0,  (LPARAM)g_lpLastEvent);
////////////////////////////////////////////////////


r00d0034@yahoo.com
AnswerRe: is there any mistake in it ? Pin
Christian Graus17-Nov-02 14:01
protectorChristian Graus17-Nov-02 14:01 
GeneralRe: is there any mistake in it ? Pin
imran_rafique17-Nov-02 14:11
imran_rafique17-Nov-02 14:11 
GeneralRe: is there any mistake in it ? Pin
Christian Graus17-Nov-02 14:15
protectorChristian Graus17-Nov-02 14:15 
GeneralRe: is there any mistake in it ? Pin
imran_rafique17-Nov-02 14:31
imran_rafique17-Nov-02 14:31 
GeneralRe: is there any mistake in it ? Pin
Christian Graus17-Nov-02 15:49
protectorChristian Graus17-Nov-02 15:49 
GeneralRe: is there any mistake in it ? Pin
imran_rafique18-Nov-02 14:46
imran_rafique18-Nov-02 14:46 
Generalsemi-transparent overlays in client areas Pin
devvvy17-Nov-02 13:42
devvvy17-Nov-02 13:42 
GeneralRe: semi-transparent overlays in client areas Pin
Christian Graus17-Nov-02 14:03
protectorChristian Graus17-Nov-02 14:03 
GeneralRe: semi-transparent overlays in client areas Pin
Anonymous17-Nov-02 14:30
Anonymous17-Nov-02 14:30 
GeneralLots of property pages 2 Pin
DanYELL17-Nov-02 8:40
DanYELL17-Nov-02 8:40 
GeneralLots of property pages Pin
DanYELL17-Nov-02 8:39
DanYELL17-Nov-02 8:39 
GeneralRe: Lots of property pages Pin
Pavel Klocek17-Nov-02 10:43
Pavel Klocek17-Nov-02 10:43 
GeneralRe: Lots of property pages Pin
Jim A. Johnson17-Nov-02 10:49
Jim A. Johnson17-Nov-02 10:49 
GeneralBitmap Question Pin
Ken Mazaika17-Nov-02 8:33
Ken Mazaika17-Nov-02 8:33 
GeneralRe: Bitmap Question Pin
Christian Graus17-Nov-02 8:56
protectorChristian Graus17-Nov-02 8:56 
GeneralRe: Bitmap Question Pin
Ken Mazaika17-Nov-02 9:54
Ken Mazaika17-Nov-02 9:54 
GeneralRe: Bitmap Question Pin
Christian Graus17-Nov-02 10:27
protectorChristian Graus17-Nov-02 10:27 

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.