TimBiesiek
Programmer
Hi guys,
I have an access DB, which has a form in that shows records in a continuous form.
In the open event of the form, I run a query to delete all records from a table, and add some new records with another query. I then requery the form, but it displays nothing on the form, even though the table shows over 1000 records.
Any help appreciated!
I have an access DB, which has a form in that shows records in a continuous form.
In the open event of the form, I run a query to delete all records from a table, and add some new records with another query. I then requery the form, but it displays nothing on the form, even though the table shows over 1000 records.
Code:
Private Sub Form_Load()
CurrentDb.Execute "DELETE * FROM CurrentTransfers"
CurrentDb.Execute "QryTransfers"
Me.Requery
End Sub
Any help appreciated!