docs

Home All functions Categories

vuDesktopIcons(Hide)

vuDesktopIcons(LONG), Signed

Description

Hides or unhides the entire Windows desktop, including icons, taskbar, and system tray. Useful for POS and commercial applications that require exclusive access to the screen. Can be combined with vuDisableWindowsKey to fully lock down the environment.

Parameters

Parameter Data Type Description
Hide LONG 1 = Hide desktop icons and taskbar
0 = Restore them

Returns

1 (True) on success, 0 (False) on failure.

Example

! Hide desktop icons and taskbar
vuDesktopIcons(1)

! Restore desktop icons and taskbar
vuDesktopIcons(0)
Home All functions Categories