I have a button on an Access2003 database that calls autodialler to make a call to the number held in the text field of a form using:
Application.Run "utility.wlib_AutoDial", strPhoneNum
It works well but Autodialler then presents a window (or as I see it a nag) entitled “AutoDialler” showing the number to dial and 3 command buttons including <OK>.
I would like to automatically dismiss this window as if <OK> had been pressed.
A simple SendKeys after firing the autodialler from VBA won’t work since this would only run after autodialler has finished.
I have not used API windows functions a great deal and have no experience with threads.
Any ideas on dismissing this nag would be appreciated and save some R.S.I. from unnecessary mouse usage.
Many thanks
Application.Run "utility.wlib_AutoDial", strPhoneNum
It works well but Autodialler then presents a window (or as I see it a nag) entitled “AutoDialler” showing the number to dial and 3 command buttons including <OK>.
I would like to automatically dismiss this window as if <OK> had been pressed.
A simple SendKeys after firing the autodialler from VBA won’t work since this would only run after autodialler has finished.
I have not used API windows functions a great deal and have no experience with threads.
Any ideas on dismissing this nag would be appreciated and save some R.S.I. from unnecessary mouse usage.
Many thanks