예제 #1
0
        private async void UpdateTable2()
        {
            btnUpdate.Enabled = false;
            var r = await Projects.BonusDetails(m_pId);

            if (r.IsOk)
            {
                this.myGridViewBinding2.BindTo(r);
            }
            else
            {
                Commons.ShowResultErrorBox(this, r);
            }
            btnUpdate.Enabled = true;
        }