2014년 12월 3일 수요일

WIn7 Codetyphon 5.1 install / uninstall Administrator Privileges problem


Codetyphon install / uninstall Administrator Privileges problem



1. check Server Service run
    - Window Key + R
    - services.msc execute
    - Server Service run

2. continue install or uninstall




end.... :)

2014년 3월 19일 수요일

[Lazarus] Linux Console Application에서 Timer 사용하기


uses
  ...., fptimer;



FTimer : TFPTimer;



...
...
..


FTimer := TFPTimer.Create;

FTimer.Interval := 1000;
FTimer.OnTimer := @OnTimer;
FTimer.Enabled := true;

..
..


Good!!!! Lazarus!!