Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Scripting > Bringinmg an application window back into focus

Reply
Thread Tools Display Modes

Bringinmg an application window back into focus

 
 
Spin
Guest
Posts: n/a

 
      08-25-2008
Gurus,

I have a desktop application that I launch via script. But for a process
inside of it to complete I need the application window to be open but AND
active. Does anyone know of a script which can bring say for instance, a
single application window that is open on the desktop back into "focus".
You can easily distinguish the active window because it's title bar is dark
blue versus the pale gray of an inactive window.

--
Spin

 
Reply With Quote
 
 
 
 
J Ford
Guest
Posts: n/a

 
      08-25-2008
Well it is not very efficient, however it works... you will need to know the
"title" of application window that is running.

Set oShell = WScript.CreateObject("WScript.Shell")
oShell.Run "notepad"
oShell.AppActivate "Untitled - Notepad"

This sample launches Notepad and the AppActivate brings focus to it
referencing the application title.

"Spin" wrote:

> Gurus,
>
> I have a desktop application that I launch via script. But for a process
> inside of it to complete I need the application window to be open but AND
> active. Does anyone know of a script which can bring say for instance, a
> single application window that is open on the desktop back into "focus".
> You can easily distinguish the active window because it's title bar is dark
> blue versus the pale gray of an inactive window.
>
> --
> Spin
>
>

 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Window Focus bug JethroUK Windows Vista General Discussion 5 03-08-2009 12:40 PM
Window Focus microsvc Windows Vista General Discussion 4 11-30-2008 11:20 PM
Window Focus Al S Windows Vista General Discussion 0 11-19-2008 11:15 PM
Window Focus microsvc Windows Vista General Discussion 2 08-18-2008 05:38 PM
IE 7 and window focus Grandma Jo Internet Explorer 0 01-30-2007 05:12 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59