Microsoft KB Archive/106724

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 09:10, 20 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


Article ID: 106724

Article Last Modified on 10/2/2003



APPLIES TO

  • Microsoft FORTRAN PowerStation 1.0 Standard Edition
  • Microsoft Fortran PowerStation 1.0a for MS-DOS



This article was previously published under Q106724

SUMMARY

The PowerStation debugger displays the following message

EE0029 Error: Cannot access user memory

in the Watch window when a formal argument of a subroutine or function cannot be displayed. A formal argument can be viewed only if the current point of execution is within the subprogram accepting the formal argument. Once the first line of the subprogram has been executed, the formal arguments display correctly in the Watch window.

This problem does not occur with FORTRAN PowerStation 32.

MORE INFORMATION

The EE0029 error can be generated by following these steps:

  1. Build the sample code with the project in debug mode.
  2. Set a breakpoint on the line with "a = c+1.2" and GO (press F5).
  3. Set a watch on a and c. The value for c will be:

    EE0029 Error: Cannot access user memory.

  4. Single step once and the value of c will now be displayed.

Sample Code

Compile options required: /Zi
      real*4 b
      b = 2.
      call sub (b)
      end

      subroutine sub (c)
      integer*4   a
      real*4      c
      a = c+1.2
      print*, a
      return
      end
                


Additional query words: kbinf 1.00 nofpsnt

Keywords: KB106724