我正在制定一个库存计划。我在设置替代表单来运送库存时遇到问题。
我认为我下面的代码将获取用户输入的数字,从存储在数组中的数字中减去它,然后将新数字保存到数组中。
您在网上知道的任何资源都会很棒。
Public Class Ship
Private Sub btnSave_Click(sender As Object, e As EventArgs) Handles btnSave.Click
If VBProj2.cbInventory.SelectedIndex <> -1 Then
'VBProj2.cbInventory.Items.RemoveAt(VBProj2.cbInventory.SelectedIndex)
VBProj2.txtQuantity.Clear()
Dim intX As Integer = VBProj2.cbInventory.Items.Count
If txtQuantityNew.Text <= 200 Then
VBProj2.iquantity(intX) = txtQuantityNew.Text - VBProj2.iquantity(intX)
MessageBox.Show(VBProj2.iquantity(intX))
VBProj2.cbInventory.SelectedIndex = VBProj2.cbInventory.Items.Count - 1
Else
MessageBox.Show("Please only ship 200 or less")
End If
Me.Close()
Else
MessageBox.Show("Something fed up")
End If
End Sub
End Class