Hi,
This will explain the hiding if the taskbar:
First, you need a hWnd (window reference) to the taskbar:
Use FindWindowA. The class of the taskbar is "Shell_traywnd", window name is
"".
Use SetWindowPos to set all positions to '0', exept the last one (uFlags).
Use 0x40h and 0x80h to show or hide the taskbar.
Regards,
Wiebe.
BTW:
BOOL SetWindowPos(
HWND hWnd, // handle to window
HWND hWndInsertAfter, // placement-order handle
int X, // horizontal position
int Y, // vertical position
int cx, // width
int cy, // height
UINT uFlags // window-positioning options
);
HWND FindWindow(
LPCTSTR lpClassName, // class name
LPCTSTR lpWindowName // window name
);
Bo
th are in User32.llb
"Yossi Zana" wrote in message
news:506500000008000000703D0000-1012609683000@exchange.ni.com...
> Hi,
>
> I need to hide the mouse and the desktop, including the fine white
> line that is left after manually hiding the taskbar. In other words, I
> need the front panel to completely fill the screen.
> I am using Evaluation LabView 6.0.1 on Win98.
>
> Thanks,
>
> Yossi