optionbutton

  • Thread starter Thread starter ZX
  • Start date Start date
Z

ZX

If i put this code

Set opt = Frame1.Controls.Add("forms.label.1")

with opt
.Top = 12
.Left = 90
.Visible = True
.Caption = "Test"
.......
end with

i dont see the new optionbutton i add.
Why??
 
of course i meant
Set opt = Frame1.Controls.Add("forms.optionbutton.1")


with opt
.Top = 12
.Left = 90
.Visible = True
.Caption = "Test"
.......
end with
 
Back
Top