Delphi’s holy source of knowledge!

  • How do I get network info in Delphi

    How do I get network info in Delphi To get network information in Delphi, you can use the TNetworkAdapter class from the System.Net.AdapterInfo unit of the Delphi RTL. This class provides properties and methods that allow you to access various details about the network adapters installed on your computer, such as the adapter name, description,…

  • How do I get system info in Delphi

    How do I get system info in Delphi To get system information in Delphi, you can use the TOSVersion and TWindowsVersion classes from the Delphi RTL. These classes provide properties and methods that allow you to access various details about the operating system and the hardware running on your computer, such as the version number,…

  • How can I do service application in Delphi

    To create a service application in Delphi, you can use the TService component from the Vcl.SvcMgr unit. A service application is a special type of program that runs in the background and performs tasks without user interaction. Here is a general outline of the steps you can follow to create a service application in Delphi:…

  • How do I make screen saver applicaion in Delphi

    How do I make screen saver applicaion in Delphi To create a screen saver application in Delphi, you can use the TScreenSaver component from the Delphi component library. This component allows you to create a screen saver that can be installed and configured on the user’s computer, just like any other screen saver. Here is…

  • How do I change object size in runtime in Delphi

    To change the size of an object in Delphi at runtime, you can use the Width and Height properties of the object. For example, to change the size of a TButton object named Button1, you can use the following code: Button1.Width := 100; // Set the width to 100 pixels Button1.Height := 50; // Set…

  • How do I make updater applicaion in Delphi

    How do I make updater applicaion in Delphi To create an updater application in Delphi, you can use the TWebUpdate component from the Delphi component library. This component provides an easy way to check for and install updates for your Delphi application, by connecting to a web server and downloading the latest version of your…

  • How do I make chat applicaion in Delphi

    How do I make chat applicaion in Delphi? To create a chat application in Delphi, you can use the TClientSocket and TServerSocket components from the Delphi VCL library. These components provide an easy way to implement a simple client-server communication model, where the client connects to the server and sends messages, and the server broadcasts…

  • How do I reveice push notification in Delphi

    To receive push notifications in Delphi, you can use the Firebase Cloud Messaging (FCM) service. FCM is a cross-platform messaging solution that allows you to send and receive notifications on your mobile devices, as well as send messages to other devices that are running your app. Here is an example of how you can use…

  • How do I use REGEX in Delphi

    To use regular expressions in Delphi, you can use the TRegEx class from the System.RegularExpressions unit. This class provides methods and properties for working with regular expressions, such as Match() and Replace() for matching and replacing strings, and Captures() and Groups() for accessing matched groups. Here is an example of how you might use the…

  • How do i make mobile game in Delphi

    To create a mobile game in Delphi, you will need to use the FireMonkey framework, which is included with recent versions of Delphi. FireMonkey is a cross-platform framework for building mobile and desktop applications, and includes a number of components and tools for creating games. Here are the basic steps you can follow to create…