-
Content Count
213 -
Joined
-
Last visited
-
Days Won
5
haentschman last won the day on November 19 2022
haentschman had the most liked content!
Community Reputation
92 ExcellentTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
VCL or CLX? How do I know what type of application I'm designing in Delphi 7. I'm a beginner.
haentschman replied to Miguel Jr's topic in Delphi IDE and APIs
...Delphi Community Edition https://www.embarcadero.com/products/delphi/starter/free-download More modern then Delphi 7... -
Variable might not have been initialized
haentschman replied to shineworld's topic in Delphi IDE and APIs
...VCS? (VersionControlSystem) ...from ZIP? 🤢 -
Hi... ...please show us your search pathes of Delphi.
-
Hi... Why if RHini = nil if if the variable is local ? better: RHini := TIniFile.Create(AppDir+'\RemoteHost.cfg'); try RHini.WriteString('RemoteHost','User',UserName); finally RHini.Free; end;
-
Use Interbase Developer license on 2 Windows PCs?
haentschman replied to GrumpyNoMore's topic in Databases
Hi... If you can...change to Firebird. The "mother" of Firebird (many years ago) is Interbase. The licence is free. https://firebirdsql.org/en/server-packages/ -
Looking for a couple of good "starter" Delphi books
haentschman replied to t2000kw's topic in General Help
Hi... https://www.youtube.com/results?search_query=delphi+tutorial+english ...maybe there is something for you. -
...sorry, it is new for me.
-
Hi...😎 ...wrong. 😉 FastReport Delphi Edition... The right way: 1. use a reporting tool (print, export, preview) 2. do not print the visual component (TDBGrid) ... print the data in the dataset 3. design the report 4. finish...😛 FastReport videos (VCL): https://www.youtube.com/watch?v=H6ntcbqF0MU https://www.youtube.com/@FastReportsAcademy ...nothing is quick and easy. 🙄 You have to learn something new every day.
-
Does anyone know the truth about the Delphi subcription?
haentschman replied to caymon's topic in General Help
Delphi: Only the subscription expires. The license remains valid. -
Hi... ...encrypt not the file, only the information. 😉 XML like INI: <Password>xbWONK6X9KT/Pq1LFcV+4VRA8tePadM1yL+iVp3hA4rkgkbckH/EG00NYnuCkN22Zyg=</Password> There are several methods of encryption. DEC for example: https://github.com/MHumm/DelphiEncryptionCompendium
-
...die mit den Bonbons. 😋
-
Hi...😎 https://dwp.gksoft.ch/en/Delphi-Welcome-Page-Plugin.html ..it is my:
-
Hi... procedure TfrmDino.BitBtn1Click(Sender: TObject); begin Application.Terminate; end; Terminate is the last option to end the program. With Terminate NO more events are executed. Better to terminate is self.close or close
-
Delphi 12 Athens Refactoring Broken
haentschman replied to Navid Madani's topic in Delphi IDE and APIs
-
Why BDE with D12?