Experimental GExperts Version 1.37 2015-04-11 released

The latest version is the first version that supports Delphi XE8. There is nothing really new about the formatter code. But the new release can be installed even if you don't have the official GExperts installer (yet). This is an extract from the readme file: ** Installing without an official installer ** With two Delphi … Continue reading Experimental GExperts Version 1.37 2015-04-11 released

Delphi Pipe

Since Delphi Feeds doesn't list my blog any more and generally isn't very fast in responding to requests for adding or removing feeds, I have created my own aggregated feed: Delphi Pipe. It's done with Yahoo Pipes and currently contains the following feeds in no particular order (*1): [wp-rss-aggregator limit="100"] Many of these are also … Continue reading Delphi Pipe

Accessing the clipboard in a Firemonkey application

It just took me quite a while to find this information so I'll put it here for future reference. A Firemonkey application can not just access the clipboard, it needs to ask the platform whether it actually has one, then get the service interface and use that. uses Fmx.Platform; [...] function TryGetClipboardService(out _clp: IFMXClipboardService): boolean; … Continue reading Accessing the clipboard in a Firemonkey application

Note to self: Do not use double quotes around field names

Note to self: If MS Access adds double quotes to field names in queries, do not use them! It won't complain about them (You'd wish it would), but it just won't work. So if you see something like: SELECT * FROM t_Mst_Tageserfassung WHERE ("TeMitarbeiter"=92) AND ("TeArbeitstag"=#12/24/2014#); Remove the quotes and it will start to work … Continue reading Note to self: Do not use double quotes around field names