To disable/enable C+A+D, use the following:
Enable:
SystemParametersInfo (97, WORD(TRUE), @Dummy, 0);
Disable:
SystemParametersInfo (97, WORD(FALSE), @Dummy, 0);
Dummy is a variable of type WORD. This works under Win 95 only, not NT.
A simple fix to make any form modal, is to create an app with a maximized, borderless mainform. In the applications OnDeactivate event, reactivate the app. Show your login dialog as fsStayOnTop to make it stay above your mainform.
Regards,
Erik.
Main Topics
Browse All Topics





by: richweedPosted on 1997-05-27 at 04:38:04ID: 1336604
Adjusted points to 75