Hi everyone,
Is there anyway to run a sql server stored procedure from access (using the ADODB.Command object) without locking up the access application?
For example, I want a list to populate when a user opens a form using a stored procedure. The only thing is that the stored procedure takes a little bit (~10 seconds) to run completely. I have it setup to display a label saying 'loading list...' before the sproc runs and it goes away after--however, you can't do anything else on the form while the sproc is running as always, but I'd like the user to still be able to click/interact with other objects on the form.
Is there a certain property I can utilize to allow the sproc to run in the background?
Thanks,
Zach
Is there anyway to run a sql server stored procedure from access (using the ADODB.Command object) without locking up the access application?
For example, I want a list to populate when a user opens a form using a stored procedure. The only thing is that the stored procedure takes a little bit (~10 seconds) to run completely. I have it setup to display a label saying 'loading list...' before the sproc runs and it goes away after--however, you can't do anything else on the form while the sproc is running as always, but I'd like the user to still be able to click/interact with other objects on the form.
Is there a certain property I can utilize to allow the sproc to run in the background?
Thanks,
Zach
Comment