How to set the Dynamic Label Name
Private Sub Form1_Load(sender As Object,e As EventArgs) Handles MyBase.Load
Label1.Text = "Student Name"
Label1.Text = "Father Name"
End Sub
How to set the dynamic Back/Fore color of a Label.
Label1.BackColor = Color.Yellow
Label2.ForeColor = Color.Red
0 Comments