private void btn_CustMaintenance_Click(object sender, EventArgs e) { frm_CustomerMaintenance oCustomerMaintenance = new frm_CustomerMaintenance(); oCustomerMaintenance.TopLevel = false; this.Controls.Add(oCustomerMaintenance); oCustomerMaintenance.StartPosition = FormStartPosition.CenterScreen; oCustomerMaintenance.Show(); btn_CustMaintenance.Enabled = false; }