我很难想出这件事,我希望有人可以帮助我。请看下面的图片。
http://s30.postimg.org/72iyqzbi9/image.jpg
我想做的是获取ListView中每个项目的“数量”,以便我可以将其减去我当前的产品库存,到目前为止我尝试过的内容..请参阅下面的代码
Dim val1 As Double
Dim val2 As Double
Dim curstock As Double
i.SubItems.Add(TB_PI_ProductStock.Text)
val1 = TB_QQuantity.Text
val2 = TB_PI_ProductStock.Text
currentstock = val2 - val1
i.SubItems.Add(currentstock)
因为我很难获得ListView项目的值,我做的是,我查询我将要在ListView中添加的每个项目的“当前库存数量”,但结果是不准确也不好..
答案 0 :(得分:0)
如果我理解正确你想要这个:
'declare your list of Quantity
Dim Quantity as List(Of Double)
'add your itmes (from picture 1 and 5)
Quantity.add(1)
Quantity.add(5)
'get your items
For Each QuantityList As double In Quantity
'some action like below
MessageBox.Show(QuantityList.ToString)
Next
如果这不是您想要的,请添加更多信息