
rdo and rdc resultset problem
from microsoft technet - remote server connectivity
"You can use the RemoteData control to create RDO objects, just as you
can use the Data control to create Jet DAO objects. You can also create
result sets using RDO methods and pass these to the RemoteData control
for management and editing by associated bound controls."
with the following code, i am not able to set the remote data control
resultset with a newly created resultset
dim lrdoRS as rdoResultset
Set lrdoRS = grdoConnection.OpenResultset(sSQL,
rdOpenForwardOnly,rdConcurReadOnly)
set MSRDC1.Resultset = lrdoRS
the error i get is "type mismatch" when "MSRDC1.Resultset = lrdoRS" is
executed. what am i doing wrong?
thanks in advance
h