M
Me
I have a function -
Function GetManagersName(xxx)
Set RS = Conn.execute(localSQLString)
GetManagersName = RS("Name")
RS.close
SET RS= nothing
end function
---------------------
If it cannot find a name, I would like to put blank.
call is made to get record set from the database.
Database can't find the record as a result I get the error
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested
operation requires a current record.
Thank you,
-Me
Function GetManagersName(xxx)
Set RS = Conn.execute(localSQLString)
GetManagersName = RS("Name")
RS.close
SET RS= nothing
end function
---------------------
If it cannot find a name, I would like to put blank.
call is made to get record set from the database.
Database can't find the record as a result I get the error
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested
operation requires a current record.
Thank you,
-Me