I'm trying to create an application in VB.net
that can come to the front once a certain condition occurs (in this case, a file being created). I've tried the following code, but it just results in the taskbar button blinking on Windows 7
:
Me.Activate()
I understand the reason for this, and I completely understand why people don't want any random application to steal focus (I hate it too). This is an extremely limited use application (only 3 computers will actually be using it), and the users in this case would want the application to popup in front (there will be an option to turn it off too).
Any ideas if this is still possible to do on Windows 7
?