VERSION 5.00 Begin VB.Form simpleForm Caption = "Form1" ClientHeight = 3195 ClientLeft = 60 ClientTop = 345 ClientWidth = 4680 LinkTopic = "Form1" ScaleHeight = 3195 ScaleWidth = 4680 StartUpPosition = 3 'Windows Default Begin Project1.colorCycle UserControl11 Height = 615 Left = 0 TabIndex = 0 Top = 0 Width = 735 _ExtentX = 1296 _ExtentY = 1085 End End Attribute VB_Name = "simpleForm" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Form_Load() End Sub Private Sub picColor_Click() Static colorNum As Integer colorNum = colorNum + 1 If colorNum > 15 Then colorNum = 0 picColor.BackColor = QBColor(colorNum) End Sub