CodeDelphiRAD Studio

Learn How Easy It Is To Implement Unit Testing In Your Delphi Windows Apps

In this video, you will learn how to implement a simple “Unit Testing” on your Application. With this simple approach, you can check if the result is matching your expectations,  “Assert” values inside routines, and interact with GUI and non-GUI elements; using a simple loop you can generate several “users’ inputs”, to avoid any future problems on your…
Read more
DelphiShowcase

Windows System Monitor Log Visualization Tool Built In Delphi

Developer Nader Shallabi has a project over on GitHub called Sysmon Tools. Sysmon Tools consists of Sysmon View, Sysmon Shell, and Sysmon Box. Sysmon View is an off-line Sysmon log visualization tool. According to Microsoft Sysmon or System Monitor is a “Windows system service and device driver that, once installed on a system, remains resident across system reboots to monitor and log system…
Read more
DelphiNews

RAD Studio with Delphi - The Original Low Code!

These days low-code development is en vogue. Various research groups, such as Gartner, put the low-code application development platform market at ~$10M billion in 2019 and project CAGR to be greater than 20% from 2020 to 2027. In contrast, the market for developer tools has…
DatabaseDelphiRAD StudioTech Partner

Easy Access to MS Access Databases with Delphi and C++ Builder Components

If you need to work with Microsoft Access databases in your application then you can use the Data Access Objects (DAO) library from WINSOFT: Component list The DAO library contains the following components: TDAODatabase, TDAODataSet, TDAOTable, TDAOQuery, TDAOUpdateSQL Examples // Create a new database uses DAO, DAODS; GetDBEngine.CreateDatabase('C:\database.mdb', dbLangGeneral…
Read more
CodeDelphi

Syntax Highlighting Editors In Delphi & C++Builder On Windows

A popular syntax highlighting editor for Delphi is called TSynEdit. This post is mainly focused on the various forks of TSynEdit and which one you might want to use in your own projects. The Dev C++ project uses TSynEdit which needed to be upgraded when it was lifted from compiling in Delphi 6 to compiling in Delphi 10.4. The three options are: TurboPack TSynEdit &#8211…
Read more