private void tsmiToManageBook_Click(object sender, EventArgs e) { Form frm = new frmManageBook(); frm.MdiParent = this; frm.Show(); }
public frmUpdateBook(frmManageBook f, Book book) { InitializeComponent(); this.book = book; this.parent = f; }