ユーザーフォームモジュール
=========================================================================
Option Explicit
Dim I As Long
Private Sub CommandButton1_Click()
With Me.Controls.Add("Forms.ComboBox.1")
.Move 10, 18 * I + 10, 120, 18
I = I + 1
End With
End Sub
Private Sub CommandButton2_Click()
With Me.Controls
On Error Resume Next
.Remove .Item(.Count - 1).Name
If Err.Number = 0 Then
I = I - 1
End If
End With
End Sub