I want to be able to do the following:
Me.lbl_ += ctl.ID.Substrin g(2) + ".text = " + dr("ErrMess"))
Me.lbl_ += ctl.ID.Substrin g(2) - this would build up the name of the label control.
".text = " + dr("ErrMess")) - this would add the required text to the control.
is there any way of buildind up a control and then adding a value to it.
Me.lbl_ += ctl.ID.Substrin g(2) + ".text = " + dr("ErrMess"))
Me.lbl_ += ctl.ID.Substrin g(2) - this would build up the name of the label control.
".text = " + dr("ErrMess")) - this would add the required text to the control.
is there any way of buildind up a control and then adding a value to it.
Comment