Quote:
Originally Posted by alphaceph11
Guys about the lock screen.... I want it to be there but if I minimize it or click else where it gets locked again. Can you help me with it? i.e I don't want it to get locked again after unlocking it.
|
Code:
Result.Tmr:= TTimer.Create(hParent);
with Result.Tmr do begin
OnTimer:=@LockTimer;
Interval:=1;
if hLock then
Enabled:=True
else
Enabled:=False;
end;
or disable lockscreen
Code:
AutorunLock:=LockCreate(AutorunForm,ExpandConstant('{tmp}\Lockscreen.jpg'),False);