PC SOFT
ONLINE REPOSITORY
FOR WINDEVWEBDEV AND WINDEV MOBILE

Home |  | Sign in | English US
WD Managing the Windows session
Published by Boller
in the category Tools
New features



Description
WD Managing the Windows session


// Manage the action to perform
SWITCH RADIO_ACTION
CASE 1 // Close the session
SysShutdown(sysLogoff)
// Close the window
Close()
CASE 2 // Stop the system
SysShutdown(sysPoweroff)
// Close the window
Close()
CASE 3 // Restart the system
SysShutdown(sysReboot)
// Close the window
Close()
CASE 4 // Lock the session
IF CBOX_TEST_LOCKING[1] = True THEN
SysDetectLockedSession(LockingNotification)
END

SysShutdown(sysLockSession)
IF CBOX_TEST_LOCKING[1] = False THEN
// Close the window
Close()
END
END
Illustrations, screen shots
none
none
User reviews
(To evaluate this resource, click 'Write a review')
No review or comment? Be the first one!