Hi Everyone
I have a listbox that calculates interest rates
the code is as follows:-
dim amount as double = val(textbox2.text)
dim counter as integer
for counter = 1 to 10
listbox1.items.add(counter & " % " & formatcurrency((amount*counter)/100))
next counter
This works great but i would like to use a listview with two columns. 1 for the counter percentage .2 for the amount calculation.
I have tried but am getting stuck with the subitems.
Many thanks
Mikey