delphi spirit, forever

Archive for November, 2008

27 Nov, 2008

Send fax directly with HylaFax or MSFax v.1.0

Posted by: admin In: system

Two example application that allow developers to make Delphi application that sends fax directly over HylaFax or Microsoft Fax Service. By George Torok and you can download from here.
HylaFax: HylaFax is an open source fax server under Linux. We are lucky, because we can communicate HylaFax through FTP. So you we have to write a [...]

Tags: , , , , , ,

From here, The first beta for the components is available for download right here:
http://www.qadram.com/vcl4php/third-party/OpenChart/OpenChart.exe

Close the IDE
Run the setup
Check the path is the Delphi for PHP 2.0 path
Run the IDE again

Now you will have a new category on the tool palette called Open Chart, and a component there. There is also a sample on the vcl\openchart\samples, [...]

24 Nov, 2008

How to load an XML document into the DOM

Posted by: admin In: delphi code

From here, we will look at the code that we used to create a program that enabled us to load an XML document into DOM. This article is the fourth part of a four-part series that covers Delphi, XML, and the DOM.

Related posts

Use XMLHTTP in Delphi (0)
DIHtmlParser v5.0.0 (0)

Tags: ,

Successor of the famous Delphi Encryption Compendium by Arvid Winkelsdorf and Hagen Reddmann. A compendium of various strong encryption algorithms and hash functions, including:
Complete Rewrite of the former DEC 3, Update to the DEC 5.1 (released back in 2006)
Many Ciphers (Blowfish, Twofish, 3DES, Rijndael…)
Many Hashs (MD2/4/5, SHA1-512, RipeMD128-320…)
Checksum Functions (CRC32, CRC16…)
Text conversion Functions (MIME Base [...]

By Glen Stansberry
PHP programming has climbed rapidly since its humble beginnings in 1995. Since then, PHP has become the most popular programming language for Web applications. Many popular websites are powered by PHP, and an overwhelming majority of scripts and Web projects are built with the popular language.
Because of PHP’s huge popularity, it has become almost impossible for Web [...]

Tags:

20 Nov, 2008

Delphi Prism Language – What you can do

Posted by: admin In: general

Delphi Prism brings a lot of new features in the language, here a list of new thinks you can do.
# Variable everywhere and create a instance at the same time you declare.

var
path : String := System.IO.Path.GetFullPath(tbDatabase.Text);
db : DataContext := new DataContext(path);
begin
var i : Integer := [...]

Tags: