BUG: Check Marks Work Only When Set in Top Level Menu Events

Last reviewed: October 3, 1996
Article ID: Q148746
The information in this article applies to:
  • Standard, Professional, and Enterprise Editions of Microsoft Visual Basic, 16-bit and 32-bit, version 4.0, for Windows

SYMPTOMS

A check mark only appears next to the previously selected item in a second level menu. The check mark appears next to the correct item only after the mouse passes over that item.

STATUS

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

WORKAROUND

To work around this issue, set the Checked property of a second level menu item in the top level menu event rather than the second level menu event.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Start 16-bit or 32-bit Visual Basic 4.0, or if it is already running, click New Project on the File menu.

  2. Use the Menu Editor to add the following menu items. Note that the Blue, Green, and Cyan should appear only if you click Color, and Color appears if you click Options. Click Menu Editor from the Tools menu.

          Caption            Name                   Index
          -------            ----                   -----
          Options          mnuOption
            Color          mnuOptionsColor
              Blue         mnuOptionsColorArray       0
              Green        mnuOptionsColorArray       1
              Cyan         mnuOptionsColorArray       2
    
    

  3. Copy the following code to the Code window of the Form1 form:

          Option Explicit
          Dim ncol As Integer
    

          Private Sub mnucol_Click(Index As Integer)
    
             ncol = Index
             BackColor = QBColor(Index + 1)
          End Sub
    
          Private Sub mnuColor_Click()
             Dim i As Integer
             For i = 0 To 2
                If i = ncol Then
                   mnuCol(i).Checked = True
                Else
                   mnuCol(i).Checked = False
                End If
             Next
          End Sub
    
          Private Sub mnuOptions_Click()
             'Uncomment the following lines for workaround
             'Dim i As Integer
             'For i = 0 To 2
                'mnucol(i).Checked = (i = ncol)
                'Next
              End Sub
    
    

  4. On the Run menu, click Start or press the F5 key to start the program. From the Options menu, click Color and note that a second level menu appears. Choose a color to change the background color of the form. Click Color again from the Options menu and choose another color. Click Color a third time and note that a check mark appears next to the original color you selected. Move the mouse over the previously selected color and note that a check mark appears on the correct choice.


Additional reference words: 4.00 buglist4.00 vb4win vb4all checkmark
KBCategory: kbbuglist
KBSubcategory: PrgOther



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