Running Oracle Forms application using Java script
Hi All,
We have created a javascript that runs Oracle Forms application on Windows 7 machine that has both IE 64 bit and IE 32 bit browsers.
when we run the Java script, the forms application starts using IE 64 bit browser. But we need to run the application on IE 32 bit browser.
following is the java script -
var xmlhttp1 = new ActiveXObject( "InternetExplorer.Application" );
xmlhttp1.Navigate (http://xxx.com/forms/frmservlet?config=appforms);
while(xmlhttp1.busy) {
WScript.Sleep(100);
}
WScript.Sleep(1000);
try
{
while(xmlhttp1.LocationURL != "") {
WScript.Sleep(100);
}
}
catch(err)
{
}
Please can you help.
Regards,
Vinit