May I’m the only one who like this feature – but I can not live without it.
So if anyone else cares he can try out the miniT-tabscoll.xpi extension at http://mozilla.dorando.at. Have fun.
Some code snippets which I need in my daily life
May I’m the only one who like this feature – but I can not live without it.
So if anyone else cares he can try out the miniT-tabscoll.xpi extension at http://mozilla.dorando.at. Have fun.
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 Continue reading
I’ve just want to mention how to do a foreach with a .NET 2.0 Hashtable:
[sourcecode lang=“c#“]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 );
}[/sourcecode] So this time KeyValuePair is our friend.
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. Continue reading
You have to use: DictionaryEntry
[sourcecode lang=“c#“]Hashtable ht = new Hashtable();
ht[„one“] = 1;
ht[„two“] = 2;
ht[„three“] = 3;
foreach(DictionaryEntry data in ht)
{
Debug.WriteLine( data.Key + “ => “ data.Value );
}[/sourcecode]