for SQL Server 2005, using Managment Studio Express:
change or add a column type of int in the column properties, under the 'Identity Specification' select yes. This will create a identity column, it auto inserts when a new record is added
in SQL Server 2000, set the column as int and set Identity to Yes, which also creates an identity column (its called autonumber in MS Access i think?)