Warren
Folks who might have still been on the ancient Newsgroups might not have ever used the reboot of the Embarcadero Support Forums, and those are gone now, and have been replaced by some very modern… … Read more
6 years ago 0
Thought Dumpster
With the release of TZDB 1.9 I have decided to give this project some more attention. I have started TZDB in 2012 and the source code shows it; and besides, version 1.9 still supports Delphi… … Read more
6 years ago 0
Thought Dumpster
With the release of TZDB 1.9 I have decided to give this project some more attention. I have started TZDB in 2012 and the source code shows it; and besides, version 1.9 still supports Delphi… … Read more
6 years ago 0
Les trucs et astuces d'un développeur Pascal
Et bien voilà, cette fois-ci ça y est, Embarcadero a annoncé le 18 juillet 2019 la sortie de la version 10.3.2 Rio de Delphi, C++Builder et RAD Studio. Comme beaucoup de monde (…) … Read more
6 years ago 0
Dalija Prasnikar
RAD Studio update 10.3.2 has just been released, packed with new features and improvements; some big, some small.Big featuresDelphi macOS 64-bitC++17 for Windows 64-bitC++ LSP Code Insight ImprovementsDelphi Linux Client Application Support (recently r… … Read more
6 years ago in Delphi, Rio, Roadmap0
gabr42
Pop quiz! How can the following program …Writeln(True);Magic;Writeln(True);… output this:?TRUEFALSESimple!Read more »— Published under the Creative Commons Attribution 3.0 license … Read more
6 years ago in definitely not best practices, Delphi, programming0
zarkogajic
Dialog windows you use to display critical information to the user are, in most cases, displayed modally. A modal window (form) is the one where the application can’t continue to run until the modal window… … Read more
6 years ago in Delphi, dialogs, messagedlg, TApplicationEvents0
Thought Dumpster
TZDB 1.9 (2019b) released. This release contains a number of fixes and updates to the source code to work on Free Pascal 3+. The latest source code is available here. Enjoy! … Read more
6 years ago 0
Thought Dumpster
TZDB 1.9 (2019b) released. This release contains a number of fixes and updates to the source code to work on Free Pascal 3+. The latest source code is available here. Enjoy! … Read more
6 years ago 0
Unknown
I created this extended product version chart, because I cannot seem to access this information elsewhere and I often need it when resolving component install issues (to reference folder and registry locations between versions) Company… … Read more
6 years ago 0
Unknown
(Useful article that was originally posted on now defunct vcldeveloper.com)Recently a friend asked me about constant parameters in Delphi functions, that brought the idea of writing a new post about passing parameters to functions/procedures in… … Read more
6 years ago 0
gabr42
Delphi never stops surprising me …Did you know that this is a valid syntax?case a of 0: Writeln(0); else Writeln(‘else’); Writeln(a);end;This code indeed compiles and works exactly as the following fragment.case a of 0: Writeln(0); … … Read more
6 years ago in Delphi, programming0