I am running a Access macro from a VB app. Do you have any ideas how I can fire this off while continuing to run the VB app?
Printable View
I am running a Access macro from a VB app. Do you have any ideas how I can fire this off while continuing to run the VB app?
you could run access via the Shell command and pass the macro name on the commandline as in
msaccess.exe /X yourmacronameGoesHere...
This should run Access asynchronously.