I have read through some of the posts on this site relating to this error but I still can\'t work out how to do this - I\'m quite new to C#.
I am trying to pass mult
Make firstNameLbl and lastNameLbl public Then initiate the new form like this:
firstNameLbl
lastNameLbl
var f3= new Form3(); f3.firstNameLbl.Text = firstNameTxtBox.Text; f3.lastNameLbl.Text = lastNametextBox.Text; f3.Show();