Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]Dim frm As VBComponent
Dim btn As MSForms.CommandButton
Set frm = ActiveDocument.VBProject.VBComponents("UserForm1")
Set btn = frm.Designer.Controls.Add("Forms.CommandButton.1", "YourButtonName")
With btn
.Caption = "Click Me!"
.Left = 10 [green]'wherever you want it[/green]
.Top = 10 [green]'wherever you want it[/green]
End With[/blue]
What I really want to do is to start with a blank userform the write some code that will place a brand new commandbutton or textbox or checkbox or dropdown box on the userform. I also want to name the object with a predefined name and caption.
Dim TempForm As Object ' VBComponent Form - 3
Dim NewButton As MSForms.CommandButton
Set TempForm = ThisWorkbook.VBProject.VBComponents.Add(3)
With TempForm
.Properties("Caption") = "Test"
.Properties("Width") = 200
.Properties("Height") = 100
End With
Set NewButton = TempForm.Designer.Controls _
.Add("forms.CommandButton.1")
With NewButton
.Caption = "Greetings!"
.Left = 60
.Top = 40
End With
With TempForm.CodeModule
X = .CountOfLines
.InsertLines X + 1, "Sub CommandButton1_Click()"
.InsertLines X + 2, "MsgBox ""Hello!"""
.InsertLines X + 3, "Unload Me"
.InsertLines X + 4, "End Sub"
End With
VBA.UserForms.Add(TempForm.Name).Show