Does anyone know how to create a structure that includes a textbox... so that when i create a new instance of the structure, i can create a new textbox.

IE.
Code:
structure newTextbox
   dim txtBox as textbox
   dim isMovable as boolean
end structure

sub someSub()
  dim x as newTextbox
  me.controls.add(x.txtbox)
end sub