Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Hiding Application from task list Pin
Prakash Nadar9-Apr-04 19:26
Prakash Nadar9-Apr-04 19:26 
GeneralRe: Hiding Application from task list Pin
2249179-Apr-04 21:06
2249179-Apr-04 21:06 
GeneralRe: Hiding Application from task list Pin
Anonymous9-Apr-04 8:00
Anonymous9-Apr-04 8:00 
GeneralRe: Hiding Application from task list Pin
ThatsAlok10-Apr-04 1:15
ThatsAlok10-Apr-04 1:15 
Generaldetermining control position in form Pin
kzyczynski9-Apr-04 3:53
kzyczynski9-Apr-04 3:53 
GeneralRe: determining control position in form Pin
David Crow9-Apr-04 5:15
David Crow9-Apr-04 5:15 
GeneralRe: determining control position in form Pin
kzyczynski9-Apr-04 8:31
kzyczynski9-Apr-04 8:31 
GeneralRe: determining control position in form Pin
Prakash Nadar9-Apr-04 9:06
Prakash Nadar9-Apr-04 9:06 
Questionbuild two more AddDocTemplate,can it ? Pin
vividtang9-Apr-04 3:47
vividtang9-Apr-04 3:47 
AnswerRe: build two more AddDocTemplate,can it ? Pin
2249179-Apr-04 4:43
2249179-Apr-04 4:43 
Generaloperator= understanding problem Pin
grscot9-Apr-04 3:23
grscot9-Apr-04 3:23 
GeneralRe: operator= understanding problem Pin
pie9-Apr-04 3:48
pie9-Apr-04 3:48 
GeneralRe: operator= understanding problem Pin
toxcct9-Apr-04 3:55
toxcct9-Apr-04 3:55 
GeneralRe: operator= understanding problem Pin
Gary R. Wheeler9-Apr-04 4:07
Gary R. Wheeler9-Apr-04 4:07 
GeneralRe: operator= understanding problem Pin
toxcct9-Apr-04 4:10
toxcct9-Apr-04 4:10 
GeneralRe: operator= understanding problem Pin
Rahul20067611-Apr-04 3:48
Rahul20067611-Apr-04 3:48 
GeneralProblem with CImage- at second call. Pin
vgrigor9-Apr-04 3:11
vgrigor9-Apr-04 3:11 
GeneralProblem using Logon user & createprocessasuser Pin
ThatsAlok9-Apr-04 2:53
ThatsAlok9-Apr-04 2:53 
GeneralRe: Problem using Logon user & createprocessasuser Pin
Navin9-Apr-04 6:29
Navin9-Apr-04 6:29 
GeneralCheck whether click is part of double-click Pin
pie9-Apr-04 2:37
pie9-Apr-04 2:37 
GeneralRe: Check whether click is part of double-click Pin
toxcct9-Apr-04 2:45
toxcct9-Apr-04 2:45 
GeneralRe: Check whether click is part of double-click Pin
pie9-Apr-04 3:01
pie9-Apr-04 3:01 
GeneralRe: Check whether click is part of double-click Pin
toxcct9-Apr-04 3:15
toxcct9-Apr-04 3:15 
no, timer is not a correct solution because if you change your mouse settings, this will not correspond to the new "reality".

What i don't understand, is why you look at all the incomming messages ???
Windows send much and more messages, and if you start catching all of these, you'll die before.
just associate a function to the WM_LBUTTONDBCLK and that'll work.

To persuade yourself, do what you did to know which messages were sent, but with the mouse over menu items !!!
Just catch the messages you need !

Moreover, if WM_LBUTTONDBCLK is sent, it's because you really made a double-click...

And finally, to answer your last question, if wou wanted to know if WM_LBUTTONDOWN was part of a double-click, set a flag when this signal happens, but we get back to our first problem... you have to set your timer with the value windows asociate to a double-click...

could you give me the reason why you need this ?

thanks



TOXCCT >>> GEII power


GeneralRe: Check whether click is part of double-click Pin
pie9-Apr-04 3:35
pie9-Apr-04 3:35 
GeneralRe: Check whether click is part of double-click Pin
toxcct9-Apr-04 3:50
toxcct9-Apr-04 3:50 

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.