Archives

Archive for February, 2006

Mircosoft did a create job with the DataGridView in .Net 2.0. It’s so easy to display you own data. All you need is a IList implementation. The List< T > was the first which

Feb 28th, 2006 | Filed under .NET 2.0, C#

I’ve just want to mention how to do a foreach with a .NET 2.0 Hashtable: Dictionary< string, int > dict = new Dictionary< string, int >(); dict["one"] = 1; dict["two"] = 2; dict["thress"] = 3; foreach( KeyValuePair< string, int > data in dict) { Debug.WriteLine( data.Key + " => " + data.Value ); } So [...]

Feb 17th, 2006 | Filed under .NET 2.0, C#

ERROR [IM004] [Microsoft][ODBC Driver Manager] Fehler beim SQLAllocHandle-Aufruf für Treiber auf SQL_HANDLE_ENV Yeah … this damm error took me hours of hard work.

Feb 17th, 2006 | Filed under asp.net, C#, Database