Esempio n. 1
0
        private void companyDetailsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form frmCompList = new frmCompanyList();

            frmCompList.MdiParent = this;
            frmCompList.Show();
        }
Esempio n. 2
0
        private void btnVendorInfo_Click(object sender, EventArgs e)
        {
            Cursor = Cursors.WaitCursor;
            Form fx = new frmCompanyList(CompanyTypes.Vendor);

            fx.MdiParent = this;
            fx.Show();
            Cursor = Cursors.Default;
        }