Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Hiding Start Menu and TaskBar
Message
 
À
09/08/2005 15:19:02
Chandan Chakraborty
Bangiya Gramin Vikash Bank
Raiganj, Inde
Information générale
Forum:
Visual FoxPro
Catégorie:
Groupes d'usagers
Versions des environnements
Visual FoxPro:
VFP 6
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Divers
Thread ID:
01039653
Message ID:
01039726
Vues:
16
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.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform