Bonjour,
J'ai un message d'erreur avec ce code que je ne comprend
pas :
code :
Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal Count As Long)
Dim oRSS As DAO.Recordset
Dim oRst As DAO.Recordset
Dim oDB As DAO.Database
Dim oRR As DAO.Recordset
Set oDB = CurrentDb
Set oRR = oDB.OpenRecordset("quotation")
Set oRSS = Me.Recordset
oRR.Close
oRSS.Close
oDB.Close
Set oRSS = Nothing
Set oRR = Nothing
Set oDB = Nothing
End Sub
Erreur :
run time error 91
Object variable or with block variable not set
Partager