Deleted Google Calendar Events

Oct 30
2012

Several customers, and I myself, are using Google calendar to syncronize calendars between different mobile devices – like a poor man’s Exchange.

Now, a customer deleted all calendar events to cleanup an old Nokia device, and was very surprised that his calendar was empty also on his new iPhone.

After a search on the web, I have found this tool:

http://spanning.com/spannings-latest-free-tool-undelete-for-google-calendar/

With this I was able to recover his deleted items.

MySQL and null date values

Oct 23
2012

Today I have lost about two hours to work around a very strange MySQL Connector.NET behaviour.

This code

oMySQLDataReader:IsDbNull( nFieldPos )

gives an exception if the value is a date and has a null value. The exact error was

“unable to convert MySQL date/time value to System.datetime”

I have tried several things, but even

oMySqlDataReader:GetMySQLDateTime( nFieldPos)

fails.
Some messages suggested to add

“Allow Zero Datetime=true;”

to the connection string, but with this one I was unable to retrieve ANY date value.

Only adding

“Convert Zero Datetime=true;”

to the connection string solved the problem.

Positioning a form before Show()

Oct 02
2012

It was driving me crazy: I was not able to position a form before showing it. It was shown every time the height of my taskbar below the desired vertical position.

The solution was very simple: assign FormStartPosition.Manual to the :StartPosition member of the form:

self:StartPosition := FormStartPosition.Manual
self:Size := Size{ oDesktop:Width, oDesktop:Height }
self:Location := Point{ nX, nY }

Powerful Grid control for .NET applications

Oct 02
2012

After searching a while for a powerful and affordable grid control, I have found iGrid.NET from 10Tec, an Ukrainian software house.

iGrid.NET Home

Not only that this grid is ways faster than the DataGridView and the ListView from .NET framework itself, and priced at a very affordable level, but also the author has replied very fast to my questions – so also the support is very good.