M
Mark White
I have converted a reasonably complex 97 Db to 2000, and
all is going reasonably well. My only hurdle is in the
code for deleting records in a table.
The Db is used to import excel (CSV) data into table,
compare it to last months table and update only the
changed information. Once this step is done we delete from
the old table called "Latest Claims". The code is:
Set UpdateSet = MyDb.OpenRecordset("Latest Claims")
With UpdateSet.MoveFirst
Do Until .EOF = True
.Delete
.MoveNext
Loop
.Close
End With
Any help with this would be gratefully appreciated
Thanks in advance
Mark
all is going reasonably well. My only hurdle is in the
code for deleting records in a table.
The Db is used to import excel (CSV) data into table,
compare it to last months table and update only the
changed information. Once this step is done we delete from
the old table called "Latest Claims". The code is:
Set UpdateSet = MyDb.OpenRecordset("Latest Claims")
With UpdateSet.MoveFirst
Do Until .EOF = True
.Delete
.MoveNext
Loop
.Close
End With
Any help with this would be gratefully appreciated
Thanks in advance
Mark