I currently have a form that displays the information of a show and I have a different form that will update the array so the user can add more shows to the collection.
This is the beggining of my form where they can add the data to a listbox
'''
private void btnAddMovieClear_Click(object sender, EventArgs e)
{
txtEnterMovieTitle.Clear();
txtEnterRuntime.Clear();
txtEnterYear.Clear();
}
private void btnSaveMovie_Click(object sender, EventArgs e)
{
lstMovieTitle.Items.Add(txtEnterMovieTitle.Text);
lstYear.Items.Add(txtEnterYear.Text);
lstRuntime.Items.Add(txtEnterRuntime.Text);
}
}
'''
Now I have a different form that simply displays the labels. How would I do it so that I can move the text entered in the listbox to the other form and display it?