Free Pascal
Live information from Lazarus
-
Re: does FPC/LAZ have a component to work with the old JET access database "*.mdb"
libmdb is a good choice. You need to build the dll, so or dylib yourself but here are partly machine generated bindings that actually work. (CoPilot did the hard part).
This version is also Delphi compatible, or rather, made Freepascal compatible. -
Re: does FPC/LAZ have a component to work with the old JET access database "*.mdb"
Yesn't... there's the ODBC package of course (which is the de facto standard way of interacting with an Access database), but you should know that ODBC is nothing more than a standardi... -
using i18n
I have turned my application to support multiple languages successfully, using i18n.
My setup is as follows.
Let's assume that the application name is alphaq_local.
1) added DefaultTranslator at the uses clause of .lpr file.
2) added L... -
Re: Lazarus Bugfix Release 4.8
Maybe this can be addressed at some point, but I also wonder if plans are in the works to at least release the next IDE with 3.2.4 to start with?
FPC 3.2.4 is still a re... -
Re: Dynamic referencing of TEdit.Name
You can also dynamically generate a list of partners, which will allow you to assign any number of partners to a person.
When searching for controls, you can use the Tag property.
A simple sample project is included in the attachment.