Dynamic fields at runtime in web 2.0

I would like to create some dynamic fields like text boxes, dates and comboboxes on a web dialog box in web 2.0

Any way of doing this?

Try this

Var tf As New WebTextField
tf.Left = 100
tf.Top = 50
tf.Enabled = True
Self.AddControl(tf)
1 Like

@Greg_O - by any chance, do you know if ‘AddControl’ update the “tab engine” used by the WebFramework?

Anthony

You’ll need to set them yourself

1 Like