Hi, ok the problem is that when a button is click I want it to add 1 (+1) to a textbox. This process will keep on going on till I tell it not to...How would I just keep a running total of whats happening in the textbox...What I mean to say is that if I pressed the button 10 times, instead of it showing:111111111 I want it to automatically add the numbers up to show 10 instead. Im sure it easy but I cant think of how I would do it.

Thanks Very much

Convert string input into int type.

Dim no As Integer
        Integer.TryParse(TextBox1.Text, no)
        no += 1
        TextBox1.Text = no.ToString()
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.