Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Minimize my application on a computer
Message
From
12/12/2000 21:02:00
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Title:
Minimize my application on a computer
Miscellaneous
Thread ID:
00452675
Message ID:
00452675
Views:
68
I know Minimize all applications on a computer.
VFP coding,
#Define KEYEVENTF_KEYUP 0x2
#Define VK_LWIN 0x5B

DECLARE keybd_event IN Win32API ;
INTEGER nVirtualKey, ;
INTEGER nScanCode, ;
INTEGER nFlags, ;
INTEGER nExtraInfo

= keybd_event(VK_LWIN, 0, 0, 0)
= keybd_event(77, 0, 0, 0)
= keybd_event(VK_LWIN, 0, KEYEVENTF_KEYUP, 0)

But, I don't know how to Minimize my application on a computer.
the other applications is not Minimize on a computer.
Next
Reply
Map
View

Click here to load this message in the networking platform