Hi.. Would really be glad to have some help on textBox .
From what i know of textbox , the old value that u assign to it will always be replace by the new ones. Example :
The output will only be one 6 on the textBox. However i want five 6 to be listed on the textbox. Is there a line break or something so that i can print all things in the array? I know i can use the listbox to achieve that but then i am not able to copy the words from the listbox
From what i know of textbox , the old value that u assign to it will always be replace by the new ones. Example :
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim array(4) As String array(0) = 6 array(1) = 6 array(2) = 6 array(3) = 6 array(4) = 6 For n As Integer = 0 To 4 TextBox1.Text = array(n) Next End Sub
Comment