qcenv.hlp (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Error Message
                                                  Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Error: A2077
     Angle brackets required around initialized list
 
     A structure variable was defined without angle brackets around
     the initial values in the list. For example, the following
     definition is illegal:
 
     stest       test    4,,'c'0
 
     The following definitions are correct:
 
     stest    test  <4,,'c',0> ; Three initial values, one blank
     ttest    test  <>         ; No initial values
                                    -♦-