Friday, 31 March 2006 15:18 by
mha
Steve Tibbett has written an excellent article about formatting strings in C# / .NET - lots of examples .. go check it out!
a8b8dfb8-1d66-429b-90d9-b6f49c94200a|0|.0
Wednesday, 29 March 2006 15:01 by
mha
As far as I know, Microsoft still hasn't added a recursive overload for Page.FindControl - So I guess we still have to make it ourselves:
private Control FindControlRecursive(Control root, string id)
{
if (root.ID == id)
{
return root;
}
foreach (Control c in root.Controls)
{
Control t = FindControlRecursive(c, id);
if (t != null)
{
return t;
}
}
return null;
}
2c87be65-3466-4d21-b2e5-47b6269e1237|3|3.0
Wednesday, 29 March 2006 01:09 by
mha
Did you ever wonder what Regular Expressions are all about and want to gain a basic understanding quickly? If so .. check out this tutorial and be sure to download the latest version of Expresso.
52dad2b9-dcb4-494a-893a-89f1b4bc9304|0|.0
Friday, 24 March 2006 23:58 by
mha
I've been reading about AMD's Cool'n'Quiet™ Technology - some websites stated it was "crap" and other said "cool" (in the very meaing of the word! :-) technology. So, I decided to give it a go, since I'm the lucky and *very* satisfied owner of an AMD 64 X2 3800+ DualCore CPU. I've been using it for some days now and I can only say: It works!! .. the CPU is as quick as ever and my PC is now even more quiet than it was before! So - Go ahead and read the Install Manual and be sure to install the AMDs "Power Monitor" utility which is great (above image!)
0c313cfa-1e09-4f37-92f5-a11d0fb417cd|0|.0
Wednesday, 22 March 2006 13:05 by
mha
The Microsoft "Made in Express" Contest is a skill contest in which selected Finalists will build and display a "Project" consisting of a software application or physical device using Visual Studio Express and/or SQL Server Express products ("Express products"). The first prize is $10.000 - Interested ?!
1d1ab0d7-6987-4e32-937d-0ccf829d03d0|0|.0
Tuesday, 21 March 2006 13:58 by
mha
During my teaching at Aalborg University, some of the students mentioned a nice little (freeware) utility called Rainlendar, which is a small calendar located on your desktop and shows events (with Outlook integration), ToDos - really handy, "speaks" danish and is able to synchronizes events between several clients (e.g. your notebook and home computer) - check it out.
3ce9754c-effa-40f5-a74a-36d38e33a79b|0|.0
Monday, 6 March 2006 11:18 by
mha
It's time for another "Meet Microsoft" meeting. Tomorrow (the 7th Marts), Martin and I will be going to Århus to hear about WinFX and N-Tier development using Enterprise Library v2.0 .. exciting stuff - Hope to see ya' all there!
10c76dd4-9d96-4f48-96e2-2a0175dcad80|0|.0