Article ID: 149463
Article Last Modified on 7/16/2004
Option Explicit
Private Sub Form_Click()
Form2.RichTextBox1.Visible = False
End Sub
Private Sub Form_Load()
'Show the second form as modeless
Form2.Show
End Sub
Option Explicit
Private Sub Command1_Click()
'Show the Visible Property of the RichTextBox control
'in the Debug window
Debug.Print "The Visible Property is " & RichTextBox1.Visible
End Sub
Private Sub Form_Load()
Command1.Caption = "Show Visible Property"
End Sub
Additional query words: kbdss kbDSupport kbVBp kbVBp400bug kbVBp600fix kbControl
Keywords: kbbug kbfix KB149463