DelphiRAD Studio

Quickly And Easily Hook Delphi And Windows API Functions With The DDetours Library

Hooking includes a range of methods for changing or expanding the behavior of an operating system, application, or other software parts by intercepting API function calls, messages, or events passed between software components. The code that controls such interception is called a hook. DDetoursis a library that allows you to insert and remove the hook from the function. It supports both…
Read more
CodeDatabaseDelphiRAD Studio

Power Tip: Learn How to Send Arrays To An InterBase Database Using FireDAC In Delphi

The Arrays sample shows you how to use the TFDParam.ArrayType property to send arrays to a database server. To this end the ArrayType property is set to atTable.Note: This demo establishes a connection to the Interbase localhost server by default, using the SYSDBA user. You can change these parameters to connect to a different InterBase server using a valid user name and…
Read more
DelphiRAD Studio

Graphics32 Is A Powerful Drawing Library To Enhance Your Delphi Windows Apps

Graphics32is a graphics library for Delphi. Optimized for 32-bit pixel formats, it provides fast operations with pixels and graphics primitives. In most cases,Graphics32considerably outperforms the standard TBitmap/TCanvas methods. However, they are rewritten to accelerate and optimize drawing on 32-bit device-independent bitmaps (DIBs). It also includes a few new…
Read more
C++Delphi

Comprehensive AsyncPro Communications Toolkit For Delphi And C++Builder

I have seen several complex embedded Delphi systems in several industries running smoothly. And they have used 3rd parts components or libraries for data communications. One of the best and known toolkits is the Async Professional which provides direct access to serial ports, TAPI, and the Microsoft Speech API. It supports faxing, terminal emulation, VOIP, and more. What can you do with a…
Read more