Hi there..
I'm not sure about the default values, but i know you can do like this to get validationrules for not accepting blanks. (ex : "NOT NULL")
adSQL = "CREATE TABLE " &_
cNewTable &_
" (Name text (50) NOT NULL, Email text (75), Comments text (255), Region text (50), DateUploaded date)"
YOu can altso specify primary key by setting :
(ID char NOT NULL primary key, etc.ec..)
Hope it helps..
PS. I'll fill in if i can find out how to set default values..
Best regards
Mirador.