G
Guest
I found the following code to insert a column to a table. The code creates
the column as text (works great). Can I change this to autonumber? If so
how?
Dim strSQL As String
strSQL = "ALTER TABLE tblTest ADD COLUMN MyNewTextColumn nvarchar(50)"
CurrentProject.Connection.Execute strSQL, , adCmdText
as always thank you very much!
Robert
the column as text (works great). Can I change this to autonumber? If so
how?
Dim strSQL As String
strSQL = "ALTER TABLE tblTest ADD COLUMN MyNewTextColumn nvarchar(50)"
CurrentProject.Connection.Execute strSQL, , adCmdText
as always thank you very much!
Robert