BUG: Error Occurs When Printing a Form Stored in an ArrayLast reviewed: October 14, 1996Article ID: Q141680 |
The information in this article applies to:
SYMPTOMSAn application error occurs when calling the Print method of a form object contained within a form array.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
WORKAROUNDTo work around this problem, define a non-array form variable and set the variable to reference the form array element that you want to manipulate. Once this variable has been initialized, you can safely call the Print method of the newly defined Form variable, as shown in the example below:
Private Sub Form_Load()Dim MyForm As Form Dim fl(1) As Form2 Set fl(0) = New Form2 Set MyForm = fl(0) MyForm.Show 'Show the Form2 form MyForm.Print 'Print the form to the screen End Sub MORE INFORMATION
Steps to Reproduce Problem
|
Additional reference words: 4.00 vb4win vb4all
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |