Hello,
i got a task to try and prevent the user from exiting an application.
the application is a web browser where you can only navigate on one website. it is to be used in the library where people can search for books when they don't know where to look.
i have tried this:
procedure TForm1.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
CanClose:=false;
end;
that prevent the user from closing the application.
next i want to disable the use of [winkey]+M and simply [winkey].
i tried:
procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (Key=VK_LWIN) or (Key=VK_RWIN) then Key:=0;
end;
that didn't quite work..
so i would need help with
* how to prevent the maximize and minimize to a smaller window function (i can hide the buttons, but i can still double click the border)
* how to disable the use of the WinKey and any combinations used with WinKey
* how to prevent the user from opening CTRL-ALT-DEL.
i think that i could do this through windows, under user policy because the computer will be logged in with a special user, but i don't know how to do that either

i also looked under mmc.exe but i couldn't find anything.
so any help would be appreaciated.