KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q40189: SADD Function Will Not Accept Concatenated or Quoted Strings

Article: Q40189
Product(s): See article
Version(s): 4.00 4.00b 4.50
Operating System(s): MS-DOS
Keyword(s): ENDUSER | B_BasicCom SR# S890103-51 | mspl13_basic
Last Modified: 14-DEC-1989

The SADD (String ADDress) function will not accept a concatenation of
strings or a quoted literal string as a parameter. The only valid
argument for the SADD function is a single, variable-length string
variable.

This information applies to Microsoft QuickBASIC Versions 4.00, 4.00b,
and 4.50, Microsoft BASIC Compiler Versions 6.00 and 6.00b, and
Microsoft BASIC PDS Version 7.00 for MS-DOS and MS OS/2.

Under versions of QuickBASIC earlier than Version 4.00, the SADD
function accepts an argument that is a quoted literal string or a
concatenation of strings. This behavior returns the address of the
temporary storage location for the string. This is no longer allowed
in QuickBASIC Version 4.00 or later.

The following is a code example:

c$ = "This program compiles and runs"
b$ = " under Microsoft QuickBASIC 3.00"
PRINT c$ + b$
PRINT SADD(c$ + b$)

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.

Copyright Microsoft Corporation 1986-2002.