Reputation: 1
I have a problem loading the page I have a similar error message actually a lot here on the site the same time each line is a different problem message is:
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record: line 60 attaches to the line.
line 60:
SelectedCategoryID = RSCategories("CategoryID")
Upvotes: 0
Views: 119
Reputation: 11055
Before using recordset data, always perform a check if recordset is not eof e.g.
if not RSCategories.eof then
SelectedCategoryID = RSCategories("CategoryID")
end if
Upvotes: 2