Hi I have problem whit excelvba & adodbe connection in local network i use below code from this link description
Sub tbl()
Dim myCn As MyServer
Set myCn = New MyServer
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
rs.Open "Select * from mytbl1", myCn.GetConnection
Range("A3").CopyFromRecordset rs
rs.Close
myCn.Shutdown
Set rs = Nothing
Set myCn = Nothing
End Sub
and vbaproject; how ever it work fine in my system, question here why it not work in other pcs in local network thanks lot