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.
Dim Mycmd As Control
Set Mycmd = UserForm1.Frame1.Controls.Add("Forms.OptionButton.1")
With Mycmd
.Width = 15
.Height = 10
.Top = UserForm1.Frame1.Height - .Height - 5
.Left = UserForm1.Frame1.Width - .Width - 5
End With
Private Sub UserForm_Initialize()
Dim MyFrame As Object
Dim MyCmd As Object
Set MyFrame = frmFounders.Controls.Add("Forms.Frame.1")
With MyFrame
.Name = "MyFrame"
.Left = 20
.Top = 20
.Width = 40
.Height = 50
.Caption = ""
.Visible = True
End With
Set MyCmd = frmFounders.MyFrame.Controls.Add("Forms.OptionButton.1")
With MyCmd
.Width = 15
.Height = 10
.Top = frmFounders.MyFrame.Height - .Height - 5
.Left = frmFounders.MyFrame.Width - .Width - 5
End With
End Sub