Hello !
A little problem today...
I have to write and read data in a recordset in a table.
I have do this :
Dim dbsDB As Database
Dim rst1 As Recordset
Set dbsDB = OpenDatabase("C:\Gestion_Remicom.mdb"
Set rst1 = dbsDB.OpenRecordset("T_OBJ"
Do Until rst1.[EOF]
With rst1
.AddNew
.Update
End With
Loop
And I've got the message : Type uncompatibility
Could anyone help me ?
Thanks in advance !
A little problem today...
I have to write and read data in a recordset in a table.
I have do this :
Dim dbsDB As Database
Dim rst1 As Recordset
Set dbsDB = OpenDatabase("C:\Gestion_Remicom.mdb"
Set rst1 = dbsDB.OpenRecordset("T_OBJ"
Do Until rst1.[EOF]
With rst1
.AddNew
.Update
End With
Loop
And I've got the message : Type uncompatibility
Could anyone help me ?
Thanks in advance !