I'm trying to create a Label and add it to a UserForm at runtime
Dim lbl as MSForms.Label 'it wouldn't let me use Label by it self
'got a type mismatch
set lbl = MyForm.Controls.Add("Forms.Label.1","myLabel",True)
with lbl
.Top = 10
.Left = 10
.Height = 15
.Width = 15
end with
MyForm.Show
The form displayed but with no label..