English abstract: This posting is about a “Which Delphi version do you use?” poll. We are currently focussing on the German market, but if you like you may vote as non-German too of course.
Es gibt/gab sicherlich schon viele Umfragen zu diesem oder einem vergleichbaren Thema, aber dennoch haben wir von DelphiExperts mal einen Poll zum Thema “Welche Delphi Version setzen Sie hauptsächlich ein” aufgesetzt.
Die Ergebnisse verändern sich sicherlich im Laufe der Zeit, daher ist es eigentlich besonders interessant diese Frage permanent zu beobachten. Insbesondere da wir von den DelphiExperts ja speziell auch Training und Beratung zu Delphi anbieten und daher natürlich beobachten müssen, was denn die Delphi-Benutzer-Basis überhaupt derzeit einsetzt.
Read the rest of this entry »
View Comments
(This is an announcement for Episode 2 of the German Delphi Podcast)
Es hat etwas länger als angekündigt gedauert, aber nun ist sie da – die 2. Folge des deutschen Delphi Podcasts:
http://www.delphipodcast.de/2009/07/folge-2-die-delphiexperts-sind-da/
View Comments
Yesterday I revisited a nasty problem that occurs on Windows 64bit versions. I ran into that when I upgraded to Windows 7, but it seems it affects older 64bit editions of Windows as well.
After installing D2009 on a clean Win7 machine I was happy to see that Windows 7 really is what Vista should have been. It works snappy and has a lot of productivity features. But then when I started compiling and debugging a couple of my existing Delphi applications I experienced Debugger crashes almost everytime when I terminated an application.

Read the rest of this entry »
View Comments
Möchten Sie Webanwendungen (oder auch Websites) mit ASP.NET erstellen? Sie möchten dies mit Delphi tun?
Kommen Sie auf die RoadShow der DelphiExperts!
Wir zeigen Ihnen zunächst was Delphi Prism ist und wie man damit unter .NET arbeitet, danach erlernen Sie das Erstellen von ASP.NET Anwendungen. Wir werden als ganz konkretes Beispiel einen WebShop ausgehend von einem leeren Projekt aufbauen. Die komplette Themenübersicht finden Sie in den Anmeldedetails.
Wann: Montag, 27.07.2009, 09.00 – 17:00 Uhr
Wo: Düsseldorf, Intercity Hotel, Graf-Adolf-Straße 81-87
Die DelphiExperts das sind Daniel Magin, Olaf Monien und Holger Flick. Unter dem neuen Label erhalten Sie ab sofort High-End Know how rund um Delphi.
View Comments
Earlier this month Mozilla released Firefox 3.5 which comes with a whole lot of new features and bug fixes. So yesterday I finally updated and found everything working fine – well almost everything.
I went to some Website where I certainly had my credentials saved in Firefox’ password store, but for some reason they asked for the login again. First I did not really bother – this may happen I though.
Today though, I went to my online banking site and wondered why Firefox asked me to save my login or not. As I never save credit card or any other payment related information in my Browser’s password list, I got to the point that something must be wrong here. So I opened Firefox’ password list and it was empty (not counting those 4 or 5 I entered since yesterday)
Obviously installing FF3.5 over my existing 3.0 version deleted all my passwords – great! Some research on Google showed the following facts:
Situation
- Mozilla is trying to replace all legacy data storages with SQLite driven ones. During the last FF 1.0 –3.0 updates they migrated the the bookmarks, visited sites and other lists to SQLite. I believe this a good thing as it opens these storages to external tools/applications and makes interoperability much easier.
For FF 3.5 they obviously moved the Password list to SQLite
- Many users reported that they lost their passwords with FF 3.5 too – so its not a random failure with my update.
- Mozilla knew about the situation before 3.5 was released, as this bug report proves. Unfortunately the developers where not able/did not have the time to reproduce this bug and they did not stop the release for that one.
- By following various threads about that issue it turned out that FF3.5 on initial startup (after an update from 3.0 that is) tries to read the old key3.db and signons3.txt files, in order to import them into the new SQLite format in signons.sqlite. Unfortunately this process fails (because something in in key3.db might be broken as assumed by some Mozilla developers) – resulting in an empty password storage in FF3.5
- Luckily the old key3.db and signons3.txt files are NOT overwritten/deleted by FF3.5 so nothing is really lost.
Solution
- Backup first! Make a backup of your Firefox profile directory (see below) – I am not responsible for any damage
- The first solution proposed by some guys in the Mozilla forums was to terminate FF, go to your FF profile directory (see below) and delete (the new) signons.sqlite file. Restarting FF will now trigger the import/conversion again. Some users reported that this was successful eventually. For me it did not work though.
- If 2 doesn’t help, then do this:
- Install Portable Firefox 3.0 – that version runs straight off a single directory – even directly from a USB stick.
- Start FF Portable once, and terminate it again.
- Locate it’s profile directory (on my USB stick it’s: F:\FirefoxPortable\3.0\Data\profile)
- Install the Password Exporter plugin, both on FF Portable and your “regular” Firefox
- Export your passworts from FF Portable to an XML file
- Close FF Portable and start your regular FF
- Import the passwords from the XML file you just created
- If 7 does not work, saying that the XML file cannot be imported, then some of your password entries contain invalid characters. I opened my XML export file in Visual Studio (Internet Explorer will also warn about these invalid chars) and found two lines where the Password field names contained “<” or “>” characters. I deleted both entries.
The “<” “>” invalid character issue is probably not the reason why FF 3.5 fails on the automatic conversion, but it’s more likely an issue of the password exporter plugin. To me it looks more likely that FF stumbles about duplicates my key3.db file apparently contained. The Password Exporter plugin listed a couple of duplicates and simply skipped them.
Where the Firefox profile directory?
Under Vista/Windows 7 the profile directory looks like this:
C:\Users\{Your Name}\AppData\Roaming\Mozilla\Firefox\Profiles\1234abcd.default
- {YourName} is your Windows profile/login name
- 1234abcd is the identifier of your Firefox profile. You might have more than one of these directories, if you have more than one Firefox profile.
View Comments