G
George
I'm using the following VB coding to create a new table in
Access 2000. My problem is that the Required property is
set to true. How can I set the required property to false?
Dim tblPointFlowCurr As New ADOX.Catalog
Dim tblPointFlow As New ADOX.Table
tblPointFlowCurr.ActiveConnection =
CurrentProject.Connection
With tblPointFlow
.Name = "MyTable"
.Columns.Append "Year", adInteger
.Columns.Append "Month", adInteger
.Columns.Append "Day", adInteger
end With
tblPointFlowCurr.Tables.Append tblPointFlow
Thanks for any help
Access 2000. My problem is that the Required property is
set to true. How can I set the required property to false?
Dim tblPointFlowCurr As New ADOX.Catalog
Dim tblPointFlow As New ADOX.Table
tblPointFlowCurr.ActiveConnection =
CurrentProject.Connection
With tblPointFlow
.Name = "MyTable"
.Columns.Append "Year", adInteger
.Columns.Append "Month", adInteger
.Columns.Append "Day", adInteger
end With
tblPointFlowCurr.Tables.Append tblPointFlow
Thanks for any help