K
kirkm
To put several controls on a form from code.
Was playing with this but can't get it to work -
---
Private Sub CommandButton1_Click()
Dim myLabel As Label
Set myLabel = frmMyForm.Controls.Add("Forms.Label.1", "lblPrompt")
With myLabel
.Left = 10
.Top = 10
.Width = 30
.Caption = "Enter your name:"
End With
End Sub
Was playing with this but can't get it to work -
---
Private Sub CommandButton1_Click()
Dim myLabel As Label
Set myLabel = frmMyForm.Controls.Add("Forms.Label.1", "lblPrompt")
With myLabel
.Left = 10
.Top = 10
.Width = 30
.Caption = "Enter your name:"
End With
End Sub