Friday, September 25, 2009

Friday, September 11, 2009

.NET Framework 1.1. on Vista

When you want to install and use the .NET Framework 1.1. on a PC where Vista is installed read the following article.

Reset auto number from a SQL table after delete

When you have an auto number on a table and you deletes the rows in the table you have to reset the autonumber value.


DELETE FROM tblName
DBCC CHECKIDENT (tblName,RESEED, 0)

The first lines throws all the rows in tblName away and with the second row the auto number is reset


read here more information

Thursday, September 10, 2009

Fill a dropdown with month names

On Jeff Widmer's Blog there is an >article about filling a dropdown with the month names. It sounds very simple to me, but when you digging into the code you will see that for months there is not a nice solution as for the DayOfWeek:(.

Tuesday, September 1, 2009

VS2010: Multi monitor

On the Blog of Scottgu he write about the support of mulit monitors in VS2010. This sounds very nice, I will try this when I have installed a version of VS2010...