コード例 #1
0
 public void SetByRowID(Guid t_rowID)
 {
     try
     {
         _customer = new Class.clsCostumer(t_rowID, "ALL");
         RefreshData();
     }
     catch (Exception ex)
     {
         Error.LogError(ex);
     }
 }
コード例 #2
0
        void ShowFormDialog(DataTable dt)
        {
            frmLookUpCustomerALL ifrm = new frmLookUpCustomerALL(dt);

            ifrm.ShowDialog();
            if (ifrm.DialogResult == DialogResult.OK)
            {
                _customer = ifrm.Customer;
                RefreshData();
                if (this.SelectData != null)
                {
                    this.SelectData(this, new EventArgs());
                }
            }
        }
コード例 #3
0
 private void frmLookUpCustomerALL_Load(object sender, EventArgs e)
 {
     Customer = new Class.clsCostumer();
     cboFilterNameInitial.Text = "TOP 200";
     RefreshGrid();
 }