Add Value
Alright, I want to add a value everytime i click a button. What i mean is,
Lets say, I want Button1, to add another button(I already know the code to add the button and everything).
But, everytime i click Button1, It adds a button with a different value at the end, like, Click once, Adds "Button2", Click again, Adds "Button3", How can i do this? I tried something like
Dim newBtn As New Button
Dim x As Integer
newBtn.Text = "Button " + x + Val(1)
But it just says that Type Double(The Val(1)), Can not be converted from Double to String, any ideas? Thanks