VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   7695
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   9195
   LinkTopic       =   "Form1"
   ScaleHeight     =   7695
   ScaleWidth      =   9195
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton DeleteCombo 
      Caption         =   "Delete"
      Height          =   615
      Left            =   7800
      TabIndex        =   3
      Top             =   1440
      Width           =   1095
   End
   Begin VB.CommandButton LoadCombo 
      Caption         =   "Add"
      Height          =   615
      Left            =   7800
      TabIndex        =   2
      Top             =   600
      Width           =   1215
   End
   Begin VB.PictureBox Picture1 
      Height          =   5655
      Left            =   720
      ScaleHeight     =   5595
      ScaleWidth      =   6795
      TabIndex        =   0
      Top             =   480
      Width           =   6855
      Begin VB.ComboBox Combo1 
         Height          =   315
         Index           =   0
         Left            =   360
         TabIndex        =   1
         Text            =   "Leave me alone!!"
         Top             =   240
         Visible         =   0   'False
         Width           =   4215
      End
   End
   Begin VB.Label Label1 
      Caption         =   "Notice the Index of 0 on the Combo1 object !!!"
      Height          =   855
      Left            =   840
      TabIndex        =   4
      Top             =   6480
      Width           =   6735
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private x As Long
Private y As Long

Private Sub DeleteCombo_Click()
    
Dim intIndex As Integer
    
For intIndex = 1 To 11
    Unload Combo1(intIndex)
Next

End Sub

Private Sub LoadCombo_Click()
    
Dim intIndex As Integer

    x = 0
    For intIndex = 1 To 11
        Load Combo1(intIndex)
        
        With Combo1(intIndex)
            .Left = x + 125
            .Top = y
            .Width = 110
            .AddItem "1"
            .Visible = True
        End With
        x = x + 900
    Next
    
End Sub
