Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Bring another application window to frontmost position
Message
From
28/04/2000 05:09:15
 
 
To
28/04/2000 04:14:47
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00364367
Message ID:
00364370
Views:
34
>Can I use API function WSELECT() to bring another application window (for example: Internet Explorer) to the frontmost position? Pls. show me an example.
Hi Clarissa,
* This activate the My Computer Window.

Declare integer FindWindow IN Win32API ;
string cbuffer, string winname
Declare integer ShowWindow in Win32API ;
integer cbuffer, integer winname

w=0
WinName="My Computer"
r=FindWindow(w ,WinName)
If r <> 0
ShowWindow(r,3 )
Endif
_screen.windowstate=1
Previous
Reply
Map
View

Click here to load this message in the networking platform