Archive for the ‘Delphi’ Category

Posted on July 23rd, 2008 by by anonymous

Create Self-Extractor

Creates a self-extracting executable containing the compressed contents of a directory tree. When the resultant EXE is run, the files are decompressed and the directory tree is re-created.
View this tutorial

Posted on July 23rd, 2008 by by anonymous

Convert HTML to XML

This tutorial show how to convert simple HTML to XML  and demonstrates how the HTML is auto-corrected to create well-formed XML. In this example, the closing is missing.
View this tutorial

Posted on July 16th, 2008 by by anonymous

Sending email messages

Learn how to send email messages with attachments using Indy and Delphi. Full source code to a simple “SMTP Mail Sender” application included.
View this article

Posted on July 16th, 2008 by by anonymous

Running external applications: ShellExecute and ShellExecuteEx

This article talking about how can we run external application and how can make my Delphi program wait until the external program is terminated?
View this article

Posted on June 24th, 2008 by by admin

Using the Serial Ports in Delphi 2.0

This article writen in Delphi 2.0 communications applications it is necessary to use the Win32 interface to the serial ports. This varies considerably from 16-bit code as access to the communications ports is achieved through file handles. This document gives a brief introduction to serial communications under Delphi 2.0 - it does not cover event-driven […]