hi i am developinf an app in vb which is to interact with database of
website.i searched so many places and found confusing things allaround
this
is my last hope at microsoft. please suggest me to get rid of this
problem. i
use given codes
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
Set cn = New ADODB.Connection
cn.Open ("Provider=MS Remote;Remote Server=http://www.xyz.com;Data
Source=main.mdb;")
Set rs = New ADODB.Recordset
Dim str
str = "select * from reg"
rs.Open str, cn, adOpenDynamic, adLockOptimistic
it gives me err 8209 when i use this code using msdfmap written down it
gives me another err.
Dim rs As Recordset
Dim oConn1 As Connection
Set oConn1 = New Connection
oConn1.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Remote Server=http://www.xyz.info;"
& _
"Handler=MSDFMAP.Handler;" & _
"Data Source=MyAdvworksConn;"
and msdfmapini code is:=
[connect MyAdvworksConn]
Access = ReadWrite
Connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=main.mdb;User
Id=admin;Password=;"
it gives me errlike
-2147467259
could not find installable ISAM
these are the two ways i have been trying on please helpme.i can provide
more info abt proj.