I have the following code:
Table gets created okaty but all the Required properties for the columns are set to Yes. I need a way to change the columns' Required property to No.
Thank you in advance for yuor help.
Salzan
Code:
With tblTemp
.Name = tmpTable_Name
.Columns.Append "DeptId", adSingle
.Columns.Append "DeptName", adVarWChar, 50
.Columns.Append "CatName", adVarWChar, 50
.Columns.Append "StartDate", adDate
.Columns.Append "EndDate", adDate
.Columns.Append "Hours", adSingle
.Columns.Append "TypeHrs", adVarWChar, 1
End With
catCatalog.Tables.Append tblTemp
Thank you in advance for yuor help.
Salzan
Comment