PRB: SYSTEM Function Ignores SET string=string Command

Last reviewed: December 11, 1995
Article ID: Q49921
The information in this article applies to:
  • Microsoft FORTRAN for MS-DOS and OS/2, versions 4.1, 5.0, 5.1
  • Microsoft FORTRAN PowerStation for MS-DOS, versions 1.0 and 1.0a
  • Microsoft FORTRAN PowerStation 32 for Windows NT, version 1.0 and 4.0

SYMPTOMS

An attempt to issue the "SET string=string" command with the SYSTEM function in the FORTRAN run-time library fails to change the environment.

RESOLUTION

This behavior is expected. The SYSTEM command cannot modify the system environment.

MORE INFORMATION

The following code example demonstrates this situation. The environment does not change.

Sample Code

C Compile options needed: None

      INTERFACE TO FUNCTION SYSTEM[C] (STRING)
      INTEGER*2 SYSTEM
      CHARACTER*1 STRING[REFERENCE]
      END

      INTEGER*2 SYSTEM
      I = SYSTEM('SET CL=/FPi /Lr'C)
      END


Additional reference words: 1.00 4.00 4.10 5.00 5.10
KBCategory: kbprg kbprb
KBSubcategory: FORTLngIss


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: December 11, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.