WndProc when ShowInTaskBar = false

G

Guest

I have two projects - one in C++ and one in C#. I send win messages from C++
project like
::postMessage(HWND_BROADCAST, RegisterWindowMessage("MYMSGS"), 0, 0);


and I catch them in C# project by the function

protected override void WndProc(ref Message messg)

My problem is - all works ok untill I set ShowInTaskBar = false. After
ShowInTaskBar = false no one message don't come to WndProc.
Why?

Thanks
Ivana
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top