S
Sam
I want create table which name is current month +6. So in this case it would
be "December". This table should contain fields as much as days in that month
(31). The field names should be 1...31. I know all separate prosedures needed
in this, but I have troubles of making them work together. I'm using the code
below to create the table with one field. Can somebody help me a bit? Or does
someone has easier way of doing this?
Set NewTable = db.CreateTableDef("NewTable") 'create the table
With NewTable
..Fields.Append .CreateField("field", dbText, 20)
End With
be "December". This table should contain fields as much as days in that month
(31). The field names should be 1...31. I know all separate prosedures needed
in this, but I have troubles of making them work together. I'm using the code
below to create the table with one field. Can somebody help me a bit? Or does
someone has easier way of doing this?
Set NewTable = db.CreateTableDef("NewTable") 'create the table
With NewTable
..Fields.Append .CreateField("field", dbText, 20)
End With