DIALER.PRG Syntax Is Incorrect

Last reviewed: April 29, 1996
Article ID: Q101007
The information in this article applies to:
  • Microsoft FoxPro for Windows, versions 2.5, 2.5a, 2.5b, 2.6

SUMMARY

In the GOODIES\FOXTOOLS\DIALER.PRG program, there is a error in the syntax for the ATDT modem command. The following statement

   s = "ATTD 5551212" + chr(13)

should read as follows:

   s = "ATDT 5551212" + chr(13)

If the DIALER.PRG program is run as is, no error message will appear but the program will not function correctly.

Some modems do not support this syntax. If this program is used with a modem that does not support this syntax, an error message may appear.

Microsoft has confirmed that this documentation error occurs in the DIALER.PRG program.

MORE INFORMATION

ATDT is a common modem command that needs to be issued before the phone number:

   AT  stands for "attention to" (to get the attention of the modem)
   D   to get the modem in a state ready to dial
   T   stands for touch-tone dialing (P is used for pulse)


Additional reference words: FoxWin 2.50 2.50a 2.50b 2.60 docerr
KBCategory: kbprg kbdocerr
KBSubcategory: FxprgGeneral


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: April 29, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.