Hi,
I have a very strange problem,
In my project (Cpp) I use PostMessage, the problem is that it fires my message twice - even though I wish to post it ones. More clearly, Whenever I try to post a message from my addin to my automation project I receive two messages, and thus, I trigger my responding function twice. It costs me computation time and it also causes computation errors.
Does any one have a clue
Best regards.

PostMessage fires my message twice
SylvirCoder
That shouldn't happen, and it doesn't sound like a bug or common issue I'm familiar with. Are you absolutely certain that you've got it all right
You may have better luck with questions such as this in the ui or MFC newsgroups at http://msdn.microsoft.com/newsgroups.
Buddy_15
Typically you would run into this problem if more than one Messages have same Message ID. Might be your MessageID is conflicting with some existing.
You would need to put a breakpoint to check the call stack and traverse back to find out the source of the origin of the message.
You can also use SPY++ to check what all messages are getting fixed.
Well this would not be something that couldbe answered easily without doing debugging and looking at code.
floresg