Pass Textbox value to Listbox using for loop in vb.net Here Textbox value will store on some array variable Am using: For i=0 to val(textbox1.text) 'here val(textbox1.text) denote no.of values can pass to listbox - - - - next i pls send me correct code...
Dim i As Integer For i = 1 To TextBox1.Text ListBox1.Items.Add(CType(i, String)) Next
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)