MFC function inside browser
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi All, My application has a browser plugin. It is an ActiveX component and inside this component, it has UI. There is a user defined message and its handler. Handler invokes a function which in turn displays a modal dialog box. While the modal dialog box is opened, the user defined message handler is being invoked. In the code, they are using SendMessage & PostMessage with this user defined message. I don't see any SendMessage call in the function which is responsible for displaying this modal dialog box. Now my doubt is, how is is possible to invoke user defined message handler with out using SendMessage while modal dialog box is opened? Is there any difference in the behavior of PostMessage while running inside a browser?