PRB: FB+Migration Application Not Correctly Converting ALERTLast reviewed: May 16, 1996Article ID: Q110367 |
The information in this article applies to:
SYMPTOMSWhen you are using the FB+Migration application code analyzer, any lines that contain multiple prompts for the FoxBASE+ for the Macintosh ALERT command may be converted incorrectly.
RESOLUTIONReplace the commas used to separate each of the message parameters with plus signs (+). For example, the code generated by the "More Information" steps below should like this:
choice = _alert("CAUTION", 10, "Alpha"+CHR(13)+"Beta"+; CHR(13)+"Gamma"+CHR(13)) MORE INFORMATION
Steps to Reproduce Behavior
choice = _alert("CAUTION", 10, "Alpha"+CHR(13), "Beta"+; CHR(13), "Gamma"+CHR(13))When executed, the above code will generate a "Wrong number of parameters" error message.
|
Additional reference words: FoxMac 2.50b
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |