Visual Basic でボタンをクリックした後に値を 1 ずつ増やすコードを作成しようとしています。これらはこれまでに試したコードですが、目的を達成できていません。
コード 1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim votecount As Integer = Integer.Parse(showcountwinnie.Text)
votecount += 1
showcountwinnie.Text = votecount.ToString()
End Sub
コード2
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim votes As Integer
votes = 0
votes += 1
votes = showcountwinnie.Text
End Sub
コード 3
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim votewinnie As Integer
votewinnie = showcountwinnie.value
votewinnie = votewinnie + 1
showcountwinnie.value = votewinnie
End Sub