So here, i am building a clicker game, i have tried again 3 times now. I have moved from C# to VB.NET recently, and it's been good, until now. So i declared a variable for CoinsPerClick, and the problem is when i click the button to get coins, instead of 0, 1, 2, 3, it does 0, 01, 011, 0111, 01111, 011111. How do i do 1, 2, 3 instead of 011111111?
Declared Variable:
' Public Class Frm_MainForm (ignore this, StackOverflow did not want to show the Public Class Frm_MainForm)
' Declare Important Variables
Dim CoinsPerClick As String = 1
Private Sub But_Click_Click(sender As Object, e As EventArgs) Handles But_Click.Click
' Add CoinsPerClick To Tb_Coins.Text
Tb_Coins.Text += CoinsPerClick
End Sub
End Class