在我的 VB 课程中,我们被要求设置一个由用户条目填充的数组。这些条目是十进制类型,表示汽油价格。有十二个,一个月一个。这些条目应该在列表框中一次显示一个,因为它们被输入和处理。
我让他们出现了,但他们没有正确出现。条目显示为“十进制 [] 数组”(当然减去引号),而不是 4.55(或其他)。
如何让条目正确显示?代码在下面,它非常不完整,因为我只完成了项目的三分之一,所以除非你看到一些可怕的问题像拇指酸痛一样突出,否则不要担心。
Public Class GasPrices
Dim prices(11) As Decimal
Private Sub EnterButton_Click(sender As Object, e As EventArgs) Handles EnterButton.Click
prices(PriceList.Items.Count) = Convert.ToDecimal(PriceText.Text)
PriceText.Clear()
For i = 0 To 11
prices(i) = i
Next i
PriceList.Items.Add(prices)
End Sub
Private Sub PriceList_SelectedIndexChanged(sender As Object, e As EventArgs) Handles PriceList.SelectedIndexChanged
PriceList.Items.Clear()
PriceList.Items.Add(prices)
End Sub
结束类