使用动态数组更新列表框上的值

时间:2018-04-27 18:58:20

标签: vb.net

我在更改列表框中的项目数量值时遇到异常问题。我的代码可以更改第一项数量的值,但我不明白为什么循环不会为其他数量更改它。

我全局声明了两个(动态)数组:arrProduct - 保存项目的数量和arrProductID - 跟踪要更改的项目数量,它将项目ID与String变量temp-同时存储

全局变量:

optionLabel

代码:

Dim dailySale As Decimal
Dim stringF As String = "{0,10},{1,83},{2,55}"
Dim stringP As String = "{0,10},{1,25},{2,60}"

Dim arrProductID(100) As Integer
Dim arrProduct(100) As Integer
Dim c As Integer = 0
Dim temp As String = ""

感谢您抽出宝贵时间阅读此请求。非常感谢任何帮助。

0 个答案:

没有答案