Click here to Skip to main content
15,918,211 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Regarding Setup Pin
ThatsAlok7-Apr-06 23:45
ThatsAlok7-Apr-06 23:45 
QuestionProblem Pin
swapna_signsin7-Apr-06 20:36
swapna_signsin7-Apr-06 20:36 
AnswerRe: Problem Pin
Aqueel7-Apr-06 21:24
Aqueel7-Apr-06 21:24 
GeneralRe: Problem Pin
swapna_signsin8-Apr-06 5:50
swapna_signsin8-Apr-06 5:50 
QuestionSir,pls tell how to avoid .clw changed message box being poped up? Pin
CodeVarma7-Apr-06 20:29
CodeVarma7-Apr-06 20:29 
AnswerRe: Sir,pls tell how to avoid .clw changed message box being poped up? Pin
ThatsAlok8-Apr-06 1:29
ThatsAlok8-Apr-06 1:29 
QuestionFinding message Pin
cmk7-Apr-06 20:02
cmk7-Apr-06 20:02 
AnswerRe: Finding message Pin
Matt Godbolt8-Apr-06 1:24
Matt Godbolt8-Apr-06 1:24 
I don't think you can reverse the RegisterWindowMessage() function, but if you have Spy++ installed (it's part of the Visual Studio installation, Tools->Spy++) you can use it to find out which application is sending the messages. Run Spy++, use the Find Window dialog to pick your root window, choose the 'show messages' option and then hit OK. A window will pop up showing all the messages your application is receiving, and you can then find the offending messages.

You usually see lines in the Spy++ application that look like:
000D072C S message:0x1065 (User-defined:WM_USER+3173) wParam:00000000 lParam:00000000
000D072C R message:0x1065 (User-defined:WM_USER+3173) lResult:00000000

If you double-click on the 'S' line you'll see information about the sender of the message. Going to the 'Process' tab will then allow you to find out who's sending the message.

In my experience the usual culprits for sending out lots of messages like this are media players which broadcast information about where they are in the song so that third-party plugins can show song information etc.

I know this isn't quite an answer to your original question, but I hope it's useful!

Matt Godbolt
Engineer, ProFactor Software
StyleManager project
GeneralRe: Finding message Pin
cmk8-Apr-06 9:51
cmk8-Apr-06 9:51 
GeneralRe: Finding message Pin
Matt Godbolt8-Apr-06 9:53
Matt Godbolt8-Apr-06 9:53 
GeneralRe: Finding message Pin
cmk8-Apr-06 17:51
cmk8-Apr-06 17:51 
QuestionEnumerating MFU Programs Pin
rajeevktripathi7-Apr-06 19:52
rajeevktripathi7-Apr-06 19:52 
AnswerRe: Enumerating MFU Programs Pin
Hamid_RT7-Apr-06 22:30
Hamid_RT7-Apr-06 22:30 
AnswerRe: Enumerating MFU Programs Pin
Michael Dunn8-Apr-06 12:13
sitebuilderMichael Dunn8-Apr-06 12:13 
QuestionRe: Enumerating MFU Programs Pin
rajeevktripathi9-Apr-06 18:25
rajeevktripathi9-Apr-06 18:25 
QuestionShellExecute problem Pin
QuickDeveloper7-Apr-06 19:46
QuickDeveloper7-Apr-06 19:46 
AnswerRe: ShellExecute problem Pin
includeh107-Apr-06 20:10
includeh107-Apr-06 20:10 
GeneralRe: ShellExecute problem Pin
QuickDeveloper7-Apr-06 20:24
QuickDeveloper7-Apr-06 20:24 
GeneralRe: ShellExecute problem Pin
Hamid_RT7-Apr-06 21:09
Hamid_RT7-Apr-06 21:09 
GeneralRe: ShellExecute problem Pin
QuickDeveloper7-Apr-06 22:30
QuickDeveloper7-Apr-06 22:30 
GeneralRe: ShellExecute problem Pin
Hamid_RT7-Apr-06 22:50
Hamid_RT7-Apr-06 22:50 
AnswerRe: ShellExecute problem Pin
Matt Godbolt8-Apr-06 1:12
Matt Godbolt8-Apr-06 1:12 
AnswerRe: ShellExecute problem Pin
Michael Dunn8-Apr-06 12:19
sitebuilderMichael Dunn8-Apr-06 12:19 
AnswerRe: ShellExecute problem Pin
Gary R. Wheeler8-Apr-06 12:50
Gary R. Wheeler8-Apr-06 12:50 
Questionabout VSS Pin
FlyWithYou7-Apr-06 19:25
FlyWithYou7-Apr-06 19:25 

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.