Request you to please provide me the VB code for the same.
Many thanks in advance.
Regards,
Raja
raja_980@rediffmail.comRegards, Raja raja_980@rediffmail.com
Query is the Name of the MS Access Query
Dim con As New ADODB.ConnectionDim rs As New ADODB.Recordset
Private Sub Form_Load()rs.CursorLocation = adUseClientcon.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\BACKUP.mdb;Persist Security Info=False"con.Openrs.Open "Query", con, adOpenKeyset, adLockOptimistic
End SubIAMS