private void checkOut_BTN_Click(object sender, EventArgs e)
        {
            Checkout frm = new Checkout(profile, movieSelect, moviePrice, daysForRent);
            //frm.title = movieListDataGrid.CurrentRow.Cells[0].Value.ToString();
            //frm.rentalPrice = movieListDataGrid.CurrentRow.Cells[6].Value.ToString();

              frm.Show();
            this.Hide();
        }
 private void checkOut_BTN_Click(object sender, EventArgs e)
 {
     Checkout frm = new Checkout(profile, movieSelect, moviePrice, daysForRent);
     frm.Show();
     this.Hide();
 }