I have a MS Access file with 4 buttons that a user has to click 1 by 1 after the previous task completes.
I am trying to automate the file without changing its code. Is it possible to automate it with some library?
There is what the code looks like in Visual Basic
Private Sub Command61_Click()
Call Clear_Feed_Tables
End Sub
Private Sub Command63_Click()
Call Import_Feeds
End Sub
Thank you!