I
igg via AccessMonster.com
i have a module that loops thru number of lines, parses them and updates or
inserts into tables.
for k = 0 to Ubound(Lines)
if ..
currentdb.excute "Update ..."
elseif ..
currentdb.excute "insert ..."
next k
if i replace the Ubound(Lines) with 1 or 2, after the for loop is finished i
get the "Object Invalid or no longer set" error.
inserts into tables.
for k = 0 to Ubound(Lines)
if ..
currentdb.excute "Update ..."
elseif ..
currentdb.excute "insert ..."
next k
if i replace the Ubound(Lines) with 1 or 2, after the for loop is finished i
get the "Object Invalid or no longer set" error.