On one form I have:
lblQuizName.Text = "Enter Quiz Name"
Later on I call a separate form:
frmQuizForStudents.Show()
How do I move the text from lblQuizName.Text into this form as it doesn't let me write a parameter when I call frmQuizForStudents.
Especially because it has Public Class frmQuizForStudents at the top, I cannot write: "Public Class frmQuizForStudents(lblQuizName)".