M
mBird
I launch a file in the browser from a function in my application:
string f = "test.htm";
System.Diagnostics.Process.Start(f);
The browser stays on top (so the application gets hidden under the browser).
But ...
When I put System.Diagnostics.Process.Start() in a class and make a method
for it then instantiate that class in my applciation and do
myclass.mymethod(filename) the browser pops up but then the app makes itself
frontmost (so it covers the browser).
So one way the browser ends up behind the app window ack and the other way
topmost.
Can I control which it does (I want the browser to always be frontmost, on
top)?
Thank you
string f = "test.htm";
System.Diagnostics.Process.Start(f);
The browser stays on top (so the application gets hidden under the browser).
But ...
When I put System.Diagnostics.Process.Start() in a class and make a method
for it then instantiate that class in my applciation and do
myclass.mymethod(filename) the browser pops up but then the app makes itself
frontmost (so it covers the browser).
So one way the browser ends up behind the app window ack and the other way
topmost.
Can I control which it does (I want the browser to always be frontmost, on
top)?
Thank you