Visit site Leonardo's blog

August 2010

0
votes
Vote UpVote

FreePascal 64bits Port for FreeBSD 8.x

Leonardo's blog – Since a couple of days, the users of FreeBSD 8.x can enjoy developing with FPC 2.4.0 64bits!.Just update the ports tree and compile FPC.portsnap fetch updatecd /usr/ports/lang/fpcmake install cleanIf you want to compile the bleeding edge 2.5.1, you can start with this compiler and follow the same ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2010-08-19 06:01

July 2010

0
votes
Vote UpVote

Installing FreePascal 2.5.1 on FreeBsd 8.x-i386

Leonardo's blog – The other day my Ubuntu 9.10 home server broke my /boot partition and Grub2 wasn't able to boot, I don't know why this happened, I tried to reinstall Grub2 using SystemRescueCD and lost one complete day trying, but it didn't work, so I thaught it whould be the time to try FreeBSD 8.1-RC2.This ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2010-07-18 16:59

March 2010

2
votes
Vote UpVote

Web 2.0 programming with Object Pascal (Part 2)

Leonardo's blog – 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, with three buttons, btnAdd, btnEdit and btnDelete in charge of Inserting, Updating and Deleting data. Also I'll ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2010-03-21 13:49

February 2010

14
votes
Vote UpVote

Web 2.0 programming with Object Pascal

Leonardo's blog – I'm sure you experience the same feeling as me, when a "web developer" looks at your computer screen saying "wow! you program in Delphi, I used to use it before programming web applications". When I hear that, I want to start telling them that Delphi (Object Pascal) can help you get better results ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2010-02-21 13:23

January 2010

0
votes
Vote UpVote

Synapse Based SSH Client

Leonardo's blog – 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 to do exactly what I needed.Required ingredientsFirst of all, you'll need to grab a copy of the ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2010-01-29 10:01

December 2009

3
votes
Vote UpVote

Apache 2.2 modules - FPC 64bits + Ubuntu 9.10

Leonardo's blog – 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 FPC 2.2.2 on an i386 PC with Debian Linux, now I'm using Ubuntu 9.10 for x86-64 with FPC ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-12-03 11:23

November 2009

0
votes
Vote UpVote

Response to comments in "Inducing the Great Divide"

Leonardo's blog – 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 of scalability of this approach, specially when a form has many model objects pointed ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-11-19 06:22

July 2009

3
votes
Vote UpVote

Apache 2.2.x modules with FreePascal (Linux)

Leonardo's blog – 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 editor and type this code, then save it as ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-07-29 12:02
8
votes
Vote UpVote

Apache 2.2.x modules with FreePascal (Win32)

Leonardo's blog – 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 this example, I recommend you to read this Wiki to get a detailed knowledge of ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-07-03 07:36
1
vote
Vote UpVote

Apache 2.2.x modules with Delphi II

Leonardo's blog – 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 the files HTTPD2.pas, ApacheTwoApp.pas and ApacheTwoHTTP.pas from ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-07-01 12:22

May 2009

1
vote
Vote UpVote

FindFirst...FindClose in Linux

Leonardo's blog – 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 on. The application is called Modality WorkList Server, and works as a Windows Service. It's ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-05-20 09:15

April 2009

8
votes
Vote UpVote

Apache 2.2.x modules with Delphi

Leonardo's blog – 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 2.2.xDrBob articles covers up to Apache 2.0.63, but the current version of the http server is ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-04-19 08:43
4
votes
Vote UpVote

Paginating TListView - Part 3 of 3

Leonardo's blog – 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 set the values of object's properties at run-time, this is called Run Time ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-04-18 18:10
1
vote
Vote UpVote

Binding TCollections to paginating ListViews

Leonardo's blog – 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, where objects of only one type can be stored in it. The difference with other containers ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-04-06 18:36
4
votes
Vote UpVote

ListView and Pagination

Leonardo's blog – This is one of those things I needed for ages, but didn't bothered to implementbecause I thought it could require an unnecessary amount of work, and allwaysopted for a less perfectionist method.I'm talking about a method to retrieve data in Pages, then browse it in a ListViewtransparently for the ...
Details Favorite? Off-Topic? Leonardo M. Ramé @ 2009-04-05 13:40
Subscribe:
Contact us to advertise on DelphiFeeds.com

Community Links

Delphi Tage Torry Firebird News

Sponsor

 
Please login or register to use this functionality.
(click on this box to dismiss)