Please tell me how to create chechboxes(more than one) at runtime and add in a grid at runtime.
i do this by :=
First i create a checkbox named check1 at design time and set its index property to zero.
then i write this code:=
Load Check1(i) '( "i" is a counter variable)
Check1(i).Visible = True
Check1(i).Top = Grid1.Top + Grid1.CellTop
Check1(i).Left = Grid1.Left + Grid1.CellLeft
Check1(i).Width = Grid1.CellWidth
Check1(i).Height = Grid1.CellHeight
Check1(i).Value = Checked
Check1(i).Visible = True
But this did not work.


