Inheritance: System.Windows.Forms.Form
Example #1
0
        private void tsb_DocAdd_Click(object sender, EventArgs e)
        {
            DocAddForm o = new DocAddForm(this.m_product.PRODUCTID);

            o.StartPosition = FormStartPosition.CenterParent;
            o.ShowDialog();
            dgv_docList_Init();
        }
Example #2
0
 private void tsb_DocAdd_Click(object sender, EventArgs e)
 {
     DocAddForm o = new DocAddForm(this.m_product.PRODUCTID);
     o.StartPosition = FormStartPosition.CenterParent;
     o.ShowDialog();
     dgv_docList_Init();
 }