Anonymous
As I promised in my last article, here I’ll show you how to add CRUD (Create, Read, Update and Delete) operations to the sample application.The first step is to add a toolbar to the Grid,… … Read more
15 years ago 0
Anonymous
I’m sure you experience the same feeling as me, whena “web developer” looks at your computer screensaying “wow! you program in Delphi, I used to use itbefore programming web applications”. When I hear that,I want… … Read more
15 years ago 0
Anonymous
Many times, I needed a way to let my Delphi/FPC applications to connect to an SSH server, execute some commands, and get its results. Now I’m publishing a simple class based on Synapse’s TTelnetSend class… … Read more
15 years ago 0
Anonymous
Yesterday I’ve received a inquiry from Harel Haruda about my example of Apache 2.2 modules for linux, he was having some trouble trying to let Apache load its modules. My former example was compiled using… … Read more
15 years ago 0
Anonymous
I’ve read the -nice- article Inducing the great divide by Cobus Cruger, and was tempted to answer many comments about his approach to set object properties to visual controls.Many comments where related to the lack… … Read more
15 years ago 0
Anonymous
Finally I have a couple of minutes free to write about Apache 2.2.x Modules in Linux using FreePascal. The methodology is pretty much the same as my previous article about Win32 modules.The codeOpen your favorite… … Read more
15 years ago 0
Anonymous
Continuing with this series of articles, I will start with the FreePascal version using plain command line FreePascal 2.2.4 for Win32, and later I’ll try to create a module for Apache 2.2.x on Linux.Before copying-pasting… … Read more
15 years ago 0
Anonymous
After my “Apache 2.2.x modules with Delphi” article, I received many requests for an example, and here it is.Creating the directory structureCreate a directory where your Delphi project will reside, for example C:\myModule, then copy… … Read more
15 years ago 0
Anonymous
Last week a customer asked for one application we sell for sending a work list from a Radiology Information System to different equipment called Modalities in medical terminology, they are CT, CR, MR and so… … Read more
16 years ago 0
Anonymous
If you want to create Apache modules with Delphi, you can start reading DrBob’s Delphi 2006 and Apache Web Apps and this articles, they explain step by step how to create Apache modules with Dephi.Apache… … Read more
16 years ago 0
Anonymous
To finish this series of paginating TListViews, I’ll show a simple method of automatic assignment of data from a database query to properties of an object.Introducing RTTIDelphi and FreePascal provides the ability to get and… … Read more
16 years ago 0
Anonymous
In my previous article, I wrote about a method to paginate data shown in a ListView. Now, I want to extend its reach by replacing TDataSets by TCollections.What is a TCollection?A TCollection is a container,… … Read more
16 years ago 0
Anonymous
“The Delphi linker has always had the option of including so-called Turbo Debugger (TD32) debug information (on the Linker page of the Project Options dialog). The internal IDE Debugger does not normally use this information… … Read more
17 years ago in TDM, Win320
Anonymous
One of the key questions you should ask yourself as a serious Delphi developer is; what kind of exception handling and logging am I using. If you’re not using any custom or third party solution… … Read more
17 years ago in hack, TDM, Win320
Anonymous
“I don’t miss many features from Microsoft’s Visual C++ 6.0 when working in Delphi, but the new /DELAYLOAD option of the linker is one of them. This option lets you turn normal, implicit DLL import… … Read more
17 years ago in TDM0