Example #1
0
        private void OnFormLoad(object sender, EventArgs e)
        {
            asnDal      = new AsnDal();
            asnQueryDal = new AsnQueryDal();

            ucQueryCondition.LoadDataSource();
        }
Example #2
0
        private void frmLoad(object sender, EventArgs e)
        {
            try
            {
                asnQueryDal = new AsnQueryDal();

                BindingData();
            }
            catch (Exception ex)
            {
                MsgBox.Err(ex.Message);
            }
        }
Example #3
0
 private void frmLoad(object sender, EventArgs e)
 {
     asnQueryDal = new AsnQueryDal();
     BindingData();
 }
Example #4
0
 public UcAsnBody()
 {
     InitializeComponent();
     asnQueryDal = new AsnQueryDal();
 }