I have a simple table
USERS
userID Int NOTNULL
Email VarChar NOTNULL
Date datetime NOTNULL
Driving me mad I just want a date/time to be added when a userID and email address is added.
I am ussing VB 2005 SQL Express/MSSMSE on Vista x64
or do I just need to create a table as it defaults too and add code to generate date
i.e.
Dim date1 As DateTime date1 = Now() TextBoxDate = date1
thanks M