J
JohnJohn
I just answered my own question here. When creating the
table, I just need to specify the following:
Dim MyTable as New ADOX.Table
MyTable.Name = "MyTable"
MyTable.Columns.Append "MyDate", adDate
MyTable.Columns.Item("MyDate").Properties("Nullable") =
True
Works like a charm.
Thanks,
John
table, I just need to specify the following:
Dim MyTable as New ADOX.Table
MyTable.Name = "MyTable"
MyTable.Columns.Append "MyDate", adDate
MyTable.Columns.Item("MyDate").Properties("Nullable") =
True
Works like a charm.
Thanks,
John