1
我想在不在列表框中時添加當前進度欄值。我希望它在進度條值更改時添加一個新項目。顯示當前進度
這裏是我到目前爲止的代碼......它只是增加了 「0%」 一萬次..
Dim PText As String = ProgressBar1.Value
If Not PText = LB1.Items.ToString Then
LB1.Items.Add("Uploaded " & PText & "%")
End If