-
I want to change the text in the first column of a row specified by the user. The reason is, the first column contains a number, and iff the user deletes a row, I want the numbers in the following rows to be reduced by one.
I'm stuck on how to change the text.
-
-
-
I'm sorry, but, c'mon it can't be this tough.
-
this post got no responses yesterday, how about today?
-
You will have to change the values through a code loop.
I would suggest that you redesign the box to have the
numeric values show up on a separate column, if you can.
At any rate, the code will read something like this:
xxx=listbox.listcount-1
for i = 0 to xxx
replace current numeric value with i+1 (1 based numeric)
next i
Good Luck
DerFarm