Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to deactivate all the taskbar ?
Message
 
To
19/07/2003 08:39:16
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
00811760
Message ID:
00811828
Views:
11
MESSAGEBOX("Click OK to hide the taskbar")
HideTaskBar()

FUNCTION HideTaskBar
    DECLARE LONG FindWindow IN "user32" STRING lpClassName, STRING lpWindowName
    DECLARE LONG SetWindowPos IN "user32" LONG hWnd, LONG hWndInsertAfter,;
 LONG x, LONG Y, LONG cx, LONG cy, LONG wFlags
    #DEFINE WINDOWHIDE 0x80
    #DEFINE WINDOWSHOW 0x40
    LOCAL lnHandle
    lnHandle = FindWindow("Shell_TrayWnd", "")
    SetWindowPos(lnHandle, 0, 0, 0, 0, 0, WINDOWHIDE)
ENDFUNC
>how to deactivate all the taskbar ?
Previous
Reply
Map
View

Click here to load this message in the networking platform