I use D7. I need to handle the Change System Date or Time event. For example, when the user changes the system date (or time) through the Control Panel or command window (DOS), I need to evaluate if I want the user does that. If I don´t, I need to forbid the user proced with the change.
is something like:
Proced OnChangeSystemDateTime;
begin
if user has privileges then
let the user make the change
else
raise an exception
end;
Thanks
is something like:
Proced OnChangeSystemDateTime;
begin
if user has privileges then
let the user make the change
else
raise an exception
end;
Thanks