I hope I am in the right forum.
I have a VB program that first clears an Access table. Then, using a recordset opened to another database, inserts several records into it.
Set WK = CreateWorkspace("", "admin", "", dbUseJet)
Set DB2 = WK.OpenDatabase(MasterFile)
SQL = "Delete * From Materials "...
I was transfered to this forum and hope I am in the right category.
I have a VB program that clears an Access table then, in a loop, inserts several records into it.
Set WK = CreateWorkspace("", "admin", "", dbUseJet)
Set DB2 = WK.OpenDatabase(MasterFile)
SQL = "Delete * From Materials "...
I am new to this forum and hope I am in the right category.
I have a program that clears an Access table then, in a loop, inserts several records into it.
SQL="Insert Into Materials (JobCode, Item)"
SQL=SQL & "Values ('" & CurJob & "','" & CurItem & "')"
DB2.Execute SQL...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.