i have this code:
With Data1.Database.OpenRecordset("stock")
..MoveFirst
Do Until .EOF
List1.AddItem .Fields("DESCRIBE").Value
List2.AddItem .Fields("CODE_STOCK").Value
.MoveNext
Loop
ListRefresh1
End With
should i put before end with .close or not? why?
So far i have notnotice any problems
>> Stay informed about: why close the recordset?