PRB: Text Property of Grid Is Reset When Used on SSTab Control

Last reviewed: July 23, 1997
Article ID: Q171728
The information in this article applies to:
  • Microsoft Visual Basic Control Creation, Learning, Professional, and Enterprise Editions for Windows, version 5.0

SYMPTOMS

The Text property of a Grid control may be set to zero if the Grid control resides on a tab of an SSTab control and that tab is not active when the form loads.

RESOLUTION

WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

Implementing the following will help work around the problem:

    ' General Declarations of Form
    Dim blnJustOnce1 As Boolean
    Dim blnJustOnce2 As Boolean
    Dim blnJustOnce3 As Boolean
   
    Private Sub Form_Load()
      blnJustOnce1 = True
      blnJustOnce2 = True
      blnJustOnce3 = True
    End Sub
   
    Private Sub SSTab1_Click(PreviousTab As Integer)
      Select Case Form1.SSTab1.Tab
      Case 0
        If blnJustOnce1 Then
         Form1.Grid1.Text =""
         blnJustOnce1 = False
        End If
      Case 1
        If blnJustOnce2 Then
         Form1.Grid2.Text =""
         blnJustOnce2 = False
        End If
      Case 2
        If blnJustOnce3 Then
         Form1.Grid3.Text =""
         blnJustOnce3 = False
        End If
      End Select
    End Sub

STATUS

Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Open a new "Standard Exe" project.

  2. Click Components on the Project menu. Check "Microsoft Tabbed Dialog Control 5.0" and "Microsoft Grid Control" and click OK.

  3. Add an SSTab control to Form1.

  4. Set the Tabs property of SSTab1 to 3.

  5. Add a Grid control to each Tab of the SSTab control.

  6. Select the first tab of SSTab1.

  7. Run the program. Note that the Text property of the Grid control on the first tab is not set. Also, note that the Text property of the Grid control on the second and third tabs are set to zero.


Additional query words: change reset grid32.ocx tabctl32.ocx
Keywords : vb5all VBKBAX VBKBComp VBKBCtrl
Version : 5.0
Platform : WINDOWS
Issue type : kbprb


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