デルファイでのスレッドの使用 오길호2023-12-05T18:24:24+09:00これは、デルファイでスレッドを簡単に使う方法です。 synchronizeをうまく使うだけです 🙂 関数の詳細 uses System.Classes, System.SysUtils, Vcl.Forms; procedure Wait(Proc: TProc); begin Thread := TThread.CreateAnonymousThread(procedure() begin... 2019년 March 19일정보기술Delphi, thread, 델파이, 쉽고, 쓰레드, 편하게Read more...
レジストリモニタリング (Delphi) 오길호2023-09-11T11:30:27+09:00使い方 procedure RegistryMonitor(RootKey: HKEY; Key: string; Proc: TProc; WatchSub: boolean); begin TThread.CreateAnonymousThread(procedure var Reg: TRegistry; Event:... 2017년 July 4일정보기술Delphi, 델파이, 레지스트리Read more...