Just so I can look it up later, if I need it: The following are some interesting addons for Firefox: FireGestures is a Firefox extension which enables you to execute various commands with six types of gestures. Speed Start Speed Dial & Start Page with flexible layout for fast access to sites via visual bookmarks … Continue reading AddOns for Firefox
Author: dummzeuch
GExperts RSS feed link now works
Jeroen Wiert Pluimers has notified me in his comment on Google+ that the RSS feed for GExperts related posts doesn't work. I apparently forgot a forward slash in the url: correct: http://blog.dummzeuch.de/category/gexperts/feed/ wrong: http://blog.dummzeuch.de/category/gexpertsfeed/ It's fixed now, sorry about that.
GExperts for Delphi 10.2 Tokyo
I have been asked to provide GExperts for Delphi 10.2 Tokyo, multiple times, via various channels. Apparently not everybody subscribed to the GExperts Community on Google+, where I posted this on 2017-04-01: No April fools' joke: GExperts 1.38 experimental 2017-04-01 for Delphi 10.2. This version should solve several bugs that resulted in Access Violations in … Continue reading GExperts for Delphi 10.2 Tokyo
dzFeedReader ported to Lazarus
I ported my dzFeedReader tool which was originally written in Delphi 2009 to Lazarus. It's still a Windows only program though. This is more a proof of concept than a useful program, but it works. I also switched it from the SimpleRSS library to my own units so it is now under the MPL like … Continue reading dzFeedReader ported to Lazarus
Lazarus and SimpleInternet
Some notes on Lazarus: The Lazarus Wiki says on the topic of Internet Tools, that the following should load a web page: [delphi] uses simpleinternet; .. str := retrieve('http://www.google.de'); [/delphi] Unfortunately it fails to mention (or if it is mentioned, I overlooked it), that you first need to download and install the Internet Tools. After … Continue reading Lazarus and SimpleInternet
Adding a comment to an XML node
So I don't forget: Adding a comment to an existing IXMLNode is simple, once you find out how: [delphi] var CommentNode: IXMLNode; begin CommentNode := ParentNode.OwnerDocument.CreateNode('comment text', ntComment); ParentNode.ChildNodes.Add(CommentNode); [/delphi] This is documented in the DocWiki
The Delphi Pipe is back
Many months ago I used Yahoo Pipes to create a RSS feed aggregator of Delphi related blogs which I called The Delphi Pipe. Unfortunately shortly after that Yahoo shut down their Pipes service so The Delphi Pipe was rather short lived. Today I revived it using a different technique. You can find all about it … Continue reading The Delphi Pipe is back
How I used the first donations for GExperts
Two weeks ago I added the Donations for GExperts page. A few days later I received the first money through PayPal. Thanks for that! I have now used that credit for donations to other open source software that I use daily: VLC Media Player TortoiseSVN Classic Shell QTTabBar (which hasn't seen any activity since 2013, … Continue reading How I used the first donations for GExperts
Showing graphics in a Delphi StringGrid and switching them by mouse or keyboard
Today I had a need for a grid that looks like this: It mixes text with two different bitmaps, representing an on/off state. In addition it should allow the user to switch the states using the mouse and the keyboard. (If you are an experienced component developer, expect to be bored by this article. 😉 … Continue reading Showing graphics in a Delphi StringGrid and switching them by mouse or keyboard
Donations for GExperts
If you want to say thank you for my work on GExperts, there are the following options: Contribute to the GExperts quality You can either contribute good bug reports or - even better - bug fixes to GExperts. I'd actually prefer that over getting money. Good bug reports include the Delphi version (and language), the … Continue reading Donations for GExperts