ceeleelewis
Programmer
My application has been fine up to this point but I have ran into an error that crashes my application everytime I try to submit a change to record. I receive the following message ...
ADODB.Field error '80020009'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
Now I know that my dBase has the record that I'm trying to edit inside the correct table.
I just don't know if I'm using the EOF property correctly in this case?
While objRS.BOF= false
'objRS("reqFormId"
= Trim(Request.Form("reqFormId"
)
'objRS("reqDate"
= Trim(Request.Form("reqDate"
)
objRS("DNS"
= Trim(Request.Form("DNS"
)
objRS("pssWrd"
= Trim(Request.Form("PASSWORD"
)
objRS("chDksp"
=Trim(Request.Form("chDksp"
)
objRS("shMem_pre"
= Trim(Request.Form("shMem_pre"
)
objRS("dtAppsdb"
= Trim(Request.Form("dtAppsdb"
)
objRS("sndMrt"
= Trim(Request.Form("sndMrt"
)
objRS("preInstDate"
= Trim(Request.Form("preInstDate"
)
objRS("PreInstall_Comments"
= Trim(Request.Form("PreInstall_Comments"
)
objRS.Update
objRS.MoveNext
Wend
Any help would be greatly be apriciated.
ADODB.Field error '80020009'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
Now I know that my dBase has the record that I'm trying to edit inside the correct table.
I just don't know if I'm using the EOF property correctly in this case?
While objRS.BOF= false
'objRS("reqFormId"
'objRS("reqDate"
objRS("DNS"
objRS("pssWrd"
objRS("chDksp"
objRS("shMem_pre"
objRS("dtAppsdb"
objRS("sndMrt"
objRS("preInstDate"
objRS("PreInstall_Comments"
objRS.Update
objRS.MoveNext
Wend
Any help would be greatly be apriciated.