|
Question : AutoDial from Access without Getting the AutoDial Window
|
|
I'm using the Windows AutoDial feature from VB to call a customer whose phone number is in the form. I use the command:
TAPI_Make_Call stDialStr, "", "", ""
Everything works fine, but I get the Windows Auto Dialer windows always when I make the call. I do not want to see this window and do not want to make it disappear manually each time when it pops up. What possibilities do you see to do this ? I see 2 ways in principle: 1. find a command to make this window disappear 2. Give focus to the window and then again focus to the access window - then the autodial window could be in the background.
Thanks fpr help, Sebastian
Thanks for help, Sebastian
|
|
Answer : AutoDial from Access without Getting the AutoDial Window
|
|
This should give you the info you need: http://support.microsoft.com/default.aspx?scid=kb;en-us;162809
you can also try: SendKeys Chr$(13) TAPI_Make_Call stDialStr, "", "", ""
You can also try -- does not require a declare statement: SendKeys Chr$(13) Application.Run "utility.wlib_AutoDial", strDialStr A KB article on the above command: http://support.microsoft.com/default.aspx?scid=kb;EN-US;837146
|
|
|
|