alright, so i need to make a pattern that will show "the sum of 1 to 100: it will display the number in which is the total of the numbers from 1 to 100." here's what i tried, it did not work... maybe you someone can help me out ..
Dim p As Double
intp = 1
intw = 0
For intp = 0 To 100
lstDisplay.AddItem intp + intw
intw = intw + 1
Next
