コード例 #1
0
ファイル: QuotationinfoForm.cs プロジェクト: eseawind/MEMS
 protected override void custom1()
 {
     SelectProForm frm = new SelectProForm();
     frm.StartPosition = FormStartPosition.CenterParent;
     if (frm.ShowDialog() == DialogResult.OK)
     {
         var products = frm.selectProductlst;
         m_Qinfo.customerid = frm.customerID;
         txtCustomer.Text = m_crmclient.getCustomerbyid(m_Qinfo.customerid.Value).customername;
         m_QtProductlst.Clear();
         AddProduct2Qt(products);
     }
 }
コード例 #2
0
ファイル: QuotationinfoForm.cs プロジェクト: xiciliu/MEMS
        protected override void custom1()
        {
            SelectProForm frm = new SelectProForm();

            frm.StartPosition = FormStartPosition.CenterParent;
            if (frm.ShowDialog() == DialogResult.OK)
            {
                var products = frm.selectProductlst;
                m_Qinfo.customerid = frm.customerID;
                txtCustomer.Text   = m_crmclient.getCustomerbyid(m_Qinfo.customerid.Value).customername;
                m_QtProductlst.Clear();
                AddProduct2Qt(products);
            }
        }