Dim con As New OleDbConnection ("Provider=M S Remote; Remote Server=http://support.xxx.com ; Remote Provider=Micros oft.Jet.OLEDB.4 .0;Data Source= xxx;Persist Security Info=False")
Try
'con.Open()
Dim da As New OleDbDataAdapte r("select * from BugEmployee", con)
Dim ds As New DataSet
da.Fill(ds)
DataGridView1.D ataSource = ds.Tables(0)
Catch ex As Exception
MsgBox(ex.Messa ge)
End Try
I get an error like this : Internet Server Error:object/module not found.
Thanks and Regards
Surendra
Try
'con.Open()
Dim da As New OleDbDataAdapte r("select * from BugEmployee", con)
Dim ds As New DataSet
da.Fill(ds)
DataGridView1.D ataSource = ds.Tables(0)
Catch ex As Exception
MsgBox(ex.Messa ge)
End Try
I get an error like this : Internet Server Error:object/module not found.
Thanks and Regards
Surendra