Exemplo n.º 1
0
        public fThemSimple(bool isAdd = true, CDonViTinh dv = null, fDonViTinh.sendMessage send = null, int action = 1)
        {
            InitializeComponent();

            if (isAdd == false && dv == null)
            {
                XtraMessageBox.Show("ERROR : Dữ liệu không được cung cấp để thực hiện hành động !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                Close();
            }
            if (isAdd == true)
            {
                table = BUS_DonViTinh.GetDVT();
                Text  = "Thêm đơn vị tính";
            }
            else
            {
                editDV = dv;
                Text   = "Sửa thông tin đơn vị tính";
            }
            add    = isAdd;
            sendDV = send;

            flag = 1;

            InitDV();
        }
Exemplo n.º 2
0
 private void LoadData()
 {
     gcMain.DataSource = BUS_DonViTinh.GetDVT();
 }