I am trying to create a new table with one text field in access using VBA.
What is wrong with this?
![]()
strSQL = "CREATE TABLE mytable, Field1 Text(255)" CurrentDb().Execute strSQL
I am trying to create a new table with one text field in access using VBA.
What is wrong with this?
![]()
strSQL = "CREATE TABLE mytable, Field1 Text(255)" CurrentDb().Execute strSQL
SOLVED
![]()
strSQL = "CREATE TABLE mytable (F1 Text(255))"
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks