HI EVERYONE, I JUST WANT TO ASK YOUR HELP HOW TO CODE MY BUTTON IN VB.NET TO DISPLAY NUMBERS IN MY LABEL BOX TO THE ANOTHER FORM, I USED THIS CODE IN MY BUTTON " Queue.Label1.Text = Queue.Label1.Text + 1 ", but it shows only up to 9 and go back to 0...i'll just want to know how to code my button that continues my output number up to 70...thanks..

Hi!
You can do it by running a loop through the label controls of your form like

Dim i as integer = 1
For each l as Label in Form1.Controls
    l.Text=i
    i+=1
Next
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.