I have not done anything reals with test projects in Visual Studio but on Platinum Bay there are some options for configuring the test projects in Visual Studio.
Deserializing JSON to a string or a value
6 days ago
I have not done anything reals with test projects in Visual Studio but on Platinum Bay there are some options for configuring the test projects in Visual Studio.
When you want to install and use the .NET Framework 1.1. on a PC where Vista is installed read the following article.
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