BUG: Compile Error on Print Statement in a With..End Block

Last reviewed: March 5, 1998
Article ID: Q182069
The information in this article applies to:
  • Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 5.0

SYMPTOMS

You invoke the Print method from within a With..End block, as follows:

   With Form1
      .Print "Generates Error"
   End With

When you run the project, the following error message is displayed:

   Compile Error
   Method or Data not found.

CAUSE

"Print" is a reserved word. If Print is used within a With statement, Visual Basic incorrectly parses the word.

RESOLUTION

Explicitly reference the object when invoking the Print method. For example, use the following code sample to eliminate this behavior:

   Form1.Print "Printed on the Form."

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Start a new Standard EXE project in Visual Basic. Form1 is created by default.

  2. Copy the following code to the Code window of Form1:

          Option Explicit
    

          Private Sub Form_Click()
    
             With Form1
                 .Print "Generates Error"
             End With
    
             'To use the workaround code, comment the
             'previous three lines and uncomment the
             'following line:
    
             'Form1.Print "Desired Behavior"
          End Sub
    
    

  3. On the Run menu, click Start or press the F5 key to start the program. Click on the Form, and note that the following error message appears:

          Compile Error
          Method or Data not found.
    
Keywords          : vb5all VBKBEnv VBKBVB vbwin kberrmsg
Version           : WINDOWS:5.0
Platform          : WINDOWS
Issue type        : kbbug
Solution Type     : kbpending


================================================================================


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