Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
App starts up unselected
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00167184
Message ID:
00167210
Views:
19
A few Windows API Calls will do the trick.


Declare Integer FindWindow In Win32API String lpClassName ,String lpWindowName
Declare Integer SetForegroundWindow In Win32API Integer hwnd

Local cMyMainApplicationWindowTitle,nHandle

cMyMainApplicationWindowTitle = "My App's Name"
nHandle = FindWindow(0,cMyMainApplicationWindowTitle)
SetForegroundWindow(nHandle)
Previous
Reply
Map
View

Click here to load this message in the networking platform