Article ID: 148746
Article Last Modified on 6/28/2004
Caption Name Index
------- ---- -----
Options mnuOption
Color mnuOptionsColor
Blue mnuOptionsColorArray 0
Green mnuOptionsColorArray 1
Cyan mnuOptionsColorArray 2
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
Additional query words: kbVBp kbdsd kbDSupport kbVBp400bug kbVBp600fix kbControl
Keywords: kbbug kbfix KB148746