Can I post a message to a dll from a dll?
-
Hello everyone: Can a message be posted to a dll from other dll? If it can be realized, how to receive and handle it? Pls help me. Thank you. -Freehawk
what do you mean by "post a message" ? do you mean you want to do a postmessage to a CWnd`or somesuch? Bryce --- Publitor, making Pubmed easy. http://www.sohocode.com/publitor
-
what do you mean by "post a message" ? do you mean you want to do a postmessage to a CWnd`or somesuch? Bryce --- Publitor, making Pubmed easy. http://www.sohocode.com/publitor
-
Hi. I want to use the function "PostMessage" to post a message to a dll from other dll. But I dont know whether it can be realized. -Freehawk
to a dll or to a class or window which is contained in a dll and your dll is loaded when your app loads presumably? --- Publitor, making Pubmed easy. http://www.sohocode.com/publitor
-
to a dll or to a class or window which is contained in a dll and your dll is loaded when your app loads presumably? --- Publitor, making Pubmed easy. http://www.sohocode.com/publitor
-
Unless there is a window with a message loop in your dll, then PostMessage would be useless. Perhaps you should describe what you are wanting to do.
"Live long and prosper." - Spock
Jason Henderson
blog -
Unless there is a window with a message loop in your dll, then PostMessage would be useless. Perhaps you should describe what you are wanting to do.
"Live long and prosper." - Spock
Jason Henderson
blogPostThreadMessage()
will post a message to a thread that has aGetMessage()
loop running. Bikram Singh -
Hello everyone: Can a message be posted to a dll from other dll? If it can be realized, how to receive and handle it? Pls help me. Thank you. -Freehawk
freehawk wrote: n a message be posted to a dll from other dll? No. You'll either need to call a function in the other DLL, or use some other form or IPC.
"The pointy end goes in the other man." - Antonio Banderas (Zorro, 1998)
-
PostThreadMessage()
will post a message to a thread that has aGetMessage()
loop running. Bikram Singh