Oracle Forms (MOSC)

MOSC Banner

Running Oracle Forms application using Java script

edited Apr 21, 2014 12:00PM in Oracle Forms (MOSC) 1 commentAnswered

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

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center