if you are not sure how to use 'Controls.Add', here is a brief example.
Option Explicit
Private WithEvents MyButton As CommandButton
Private Sub Form_Load()
Set MyButton = Controls.Add("
VB.CommandButton", "Hello", Me)
With MyButton
.Visible = True
.Caption = "Command1"
.Top = 120
.Left = 120
End With
End Sub