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

            o.StartPosition = FormStartPosition.CenterParent;
            o.ShowDialog();
            docInfo_Init();
        }
 private void tsb_DocAdd_Click(object sender, EventArgs e)
 {
     DocAddForm o = new DocAddForm(this.m_product.MATERIALID);
     o.StartPosition = FormStartPosition.CenterParent;
     o.ShowDialog();
     docInfo_Init();
 }