Hi I need help to solve minimzing IE windows.
Bascially, I have 2 IE windows, let's name it ieA and ieB.
When user click a button on ieA, I need to minimize ieA and show or display ieB.
for minimzing
I have tried calling script function
function Minimize()
{
window.innerWidth = 100;
window.innerHeight = 100;
window.screenX = screen.width;
window.screenY = screen.height;
alwaysLowered = true;
}
and calling an exe( in VC++ using Findwindow and showwindow) using process.start()
Both doesn't work.
For displaying existing ie, I've tried calling window.open. It doesn't work too.
Please help. Thank you