Remote access to the Embarcadero License Center via SSH tunnel

Once you have set up an Embarcadero License Center (ELC) for your company (with network named user or concurrent licenses) you will need network access to it in order to start the Delphi IDE. Usually the server will only be accessible from within your intranet (I for one would not trust the ELC security to … Continue reading Remote access to the Embarcadero License Center via SSH tunnel

TThread is not a normal class

In Delphi, threads have traditionally been implemented as classes descending from TThread. While there have been quite a few improvements to multithreading, TThread is still the most compatible way. But TThread is not a normal class. In a normal class, the constructor and destructor usually look like this: [delphi] constructor TSomeClass.Create; begin inherited; FSomeList := … Continue reading TThread is not a normal class