Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Activate EXTRA

Status
Not open for further replies.

mixi

Programmer
Feb 27, 2004
2
FR
Hi,

I'm using Extra! 6.71 with SIEBEL technology (CRM software) and I'm trying to activate the application EXTRA! where I click a button in SIEBEL.

This is my script :

var xExtra = new ActiveXObject("EXTRA.System");
var xSessions = xExtra.Sessions;
var xSession = xSessions.Open("Connexion DEFENSE.edp");
xSession.Visible = true;
var xWait;
var xScreen = xSession.Screen;

xScreen.WaitHostQuiet();
xScreen.SendKeys("<Reset><Clear>example<Enter>");

How can I force EXTRA to be on the top (first plan) ?

Thanks for your answer.
 
AppActivate "Extra" (or whatever your taskbar has as the window title.

However with AppActivate and SendKeys nothing is ever guaranteed.

calculus
 
OK, I'am going to verify it with SIEBEL.
Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top