I have over 100 labels.
My Question is:
how to do the same without writing label1,label2,l abel3,label4 etc. till label 100.
I need to save memory.
tks for your help
My Question is:
how to do the same without writing label1,label2,l abel3,label4 etc. till label 100.
I need to save memory.
tks for your help
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = 1 Then Label1.Text = 4 Label2.Text = 4 Label3.Text = 4 Label4.Text = 4 End If End Sub
Comment