ここに私がいる場所があります。私は "depreciationListBox"という名前で作成したリストボックスに何も表示されません。私はこのプロジェクトでしばらく働いており、かなり困惑しています。誰もが私を助けることができる任意のポインターやソリューションは非常に高く評価されるだろう。VB減価償却額
Private Sub displayButton_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles displayButton.Click
Dim cost As Double
Dim life As Double = CDbl(lifeListBox.SelectedItem)
Dim period As Double
Dim nextPeriod As Double
Dim salvage As Double
Dim depreciation As Double
Dim isConvertedCost As Boolean
Dim isConvertedLife As Boolean
Dim isConvertedSalvage As Boolean
isConvertedCost = Double.TryParse(AssetTextBox.Text, cost)
isConvertedLife = Double.TryParse(lifeListBox.Text, life)
isConvertedSalvage = Double.TryParse(salvageTextBox.Text, salvage)
For nextPeriod = 1 To period Step 1
depreciation = Financial.DDB(cost, salvage, life, nextPeriod)
depreciationListBox.Text += nextPeriod.ToString & " " & _
Convert.ToString(depreciation) _
& ControlChars.NewLine
Next nextPeriod
If isConvertedCost AndAlso isConvertedLife _
AndAlso isConvertedSalvage Then
depreciationListBox.Text = " Year Depreciation "
End If
End Sub
助けてくれてありがとう! –