Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

how to hide taskbar ?

331 views
Skip to first unread message

Loic

unread,
Dec 7, 2000, 7:17:38 PM12/7/00
to
i would hide the taskbar, i didnt find an instruction in vb and in vc i ve
always linking prob i dont know why
so if someone could help me, with a sample in vc or vb to hide taskbar it
will be helpfull


Bill T

unread,
Dec 8, 2000, 3:38:19 PM12/8/00
to
Loic

Add the following information to your project.reg file
;
; Setting to hide taskbar
;
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\AutoHide]
"Default"=dword:1

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\OnTop]
"Default"=dword:0

"Loic" <lyc...@wanadoo.fr> wrote in message news:90p9er$oob$1...@wanadoo.fr...

Panhuber Astrid

unread,
Dec 11, 2000, 2:55:58 AM12/11/00
to
Hi!

Use the following code to hide the taskbar:

HWND hwndTaskbar = ::FindWindow(L"HHTaskBar", NULL);
::ShowWindow(hwndTaskbar, SW_HIDE);

Pay attention that the taskbar is really "hidden", that means, you won't get
it back by tapping at the bottom of the screen. therefor use the following
code to show the taskbar again:

HWND hwndTaskbar = ::FindWindow(L"HHTaskBar", NULL);
::ShowWindow(hwndTaskbar, SW_SHOW);


astrid

Loic schrieb in Nachricht <90p9er$oob$1...@wanadoo.fr>...

0 new messages