Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Hiding Start Menu and TaskBar
Message
 
To
09/08/2005 15:19:02
Chandan Chakraborty
Bangiya Gramin Vikash Bank
Raiganj, India
General information
Forum:
Visual FoxPro
Category:
User groups
Environment versions
Visual FoxPro:
VFP 6
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01039653
Message ID:
01039726
Views:
17
This is hiding routine:
#DEFINE SW_HIDE 0
#DEFINE SW_SHOWNORMAL 1

DECLARE INTEGER ShowWindow IN user32 AS ShowWindowA;
	INTEGER hWindow, INTEGER nCmdShow

DECLARE INTEGER FindWindow IN user32;
	STRING lpClassName, STRING lpWindowName

hWindow = FindWindow("Shell_TrayWnd", Null)
= ShowWindowA(hWindow, SW_HIDE)
To get back to normal, change SW_HIDE to SW_SHOWNORMAL in the last line and run the code again.
Previous
Reply
Map
View

Click here to load this message in the networking platform