Hi, I am hoping you guys could help me with this.
I am trying to loop number into something like this.
0
12
345
6789
here is my code:
Dim i As Integer
Dim j As Integer
j = CInt(TextBox1.Text)
For i = 0 To j
label1.text = i
Next
I don't have any idea how will I do it like that
I tried searching for other and did not understand how to do it since they normally do it on console