following is code for setting the adColNullable attribute during column creation, but how do you change it AFTER the column is created?


Code:
colTemp.Name = "FaxPhone"
colTemp.Type = adVarWChar
colTemp.DefinedSize = 24
colTemp.Attributes = adColNullable

cat.Tables("Employees").Columns.Append colTemp