View Single Post
  #4  
Old 04-02-2017, 05:35
Nizar3003's Avatar
Nizar3003 Nizar3003 is offline
Registered User
 
Join Date: May 2015
Location: Indonesia
Posts: 62
Thanks: 16
Thanked 36 Times in 20 Posts
Nizar3003 is on a distinguished road
try this

Result.Tmr:= TTimer.Create(hParent);
with Result.Tmr do begin
OnTimer:=@LockTimer;
Interval:=1;
if hLock then
Enabled:=True
else
Enabled:=False;
end;
Reply With Quote
The Following User Says Thank You to Nizar3003 For This Useful Post:
ZAZA4EVER (04-02-2017)