Good Evening. I understand the question may seem kind of odd, so let me explain my problem a little bit : Ii'm building a Windows From Application, that is able to open multiple Child Form, each one containing a WebBrowser component that loads a Flash animaion.
Now, I need to simulate a click on a given opened form, without it showing up on top of every other. To simulate the click, I'm using a code quite similar to https://stackoverflow.com/a/11161632/533599 : I had to implement 2 changes
- I have to stop to the "Internet Explorer_Server" , since I don't have a "MacromediaFlashPlayerActiveX" in the handles chain
- For the click to fire, I have to "make it double", that is, mouse down, up, down, up.
The code works quite well, and the click is fired, but everytime it does, the target Form gets focus and pops up on top of all his siblings ( but stays behind every other window I've opened over them). Is there a way to prevent this behaviour?