hello, i have a listbox contains a decimal numbers like 590100,423516 and i want to make an addition of all the lines of my listbox and display it in a textbox
now i'm using this code but it's not working well
here is the code
dim x,i as double
for i =0 to listbox8.listcount - 1
x=x+ listbox8.list(i,3)
next i
textbox75.value= x
now i'm using this code but it's not working well
here is the code
dim x,i as double
for i =0 to listbox8.listcount - 1
x=x+ listbox8.list(i,3)
next i
textbox75.value= x