ACC2: How to Start the AutoDialer Without the Toolbar Button

Last reviewed: June 8, 1997
Article ID: Q114218
The information in this article applies to:
  • Microsoft Access version 2.0

SUMMARY

Moderate: Requires basic macro, coding, and interoperability skills.

This article describes how to invoke the AutoDialer without choosing the AutoDialer button on the toolbar.

MORE INFORMATION

You can add the AutoDialer button to a toolbar to automatically dial a telephone number using your computer's modem. To invoke the AutoDialer without using the AutoDialer button, call the wlib_AutoDial() function, supplying the function with the telephone number as an argument.

For a form with a field called Phone that holds a telephone number, you could call the wlib_AutoDial() function from a command button by setting the button's OnClick property to:

   =wlib_AutoDial([Phone])

You can also call the wlib_AutoDial() function in any module's Immediate window. For example, to dial the phone number 555-1212, type the following in the Immediate window:

   ? wlib_AutoDial("555-1212")

REFERENCES

For more information about the AutoDialer, search for "AutoDialer," and then "AutoDialer" using the Microsoft Access Help menu.


Keywords : kbprg MdlLib PgmOthr
Version : 2.0
Platform : WINDOWS
Hardware : X86
Issue type : kbhowto


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 8, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.