Anytime I use:
Dim rst as recordset
Set rst = currentdb.openrecordset(tblName)
rst.edit/addnew
...
rst.update
The operation takes an exponential amount of time. Currently for a table with 600 records in it, with one field being edited, with a small amount of text being inserted, I've been waiting for a half hour. Yet, were I to make a quick form, and whip up a script, such an operation would take less than a second.
Am I doing something wrong? Is there anything I can do to speed up adding/editing record information via code?
thx
Dim rst as recordset
Set rst = currentdb.openrecordset(tblName)
rst.edit/addnew
...
rst.update
The operation takes an exponential amount of time. Currently for a table with 600 records in it, with one field being edited, with a small amount of text being inserted, I've been waiting for a half hour. Yet, were I to make a quick form, and whip up a script, such an operation would take less than a second.
Am I doing something wrong? Is there anything I can do to speed up adding/editing record information via code?
thx