Populate text boxes in VB.net -
i retrieving single row (using method) table, want populate each column row text boxes. how can done in vb.net.
thanks help.
for = 0 table.rows.count -1 dim row datarow = table.rows(i) dim txt new textbox txt.text = row(i) panel1.controls.add(txt) next
where panel1 flowlayoutpanel(it automatically positions textboxes you)
Comments
Post a Comment