コード例 #1
0
        private void BtnAdd_Click(object sender, EventArgs e)
        {
            ProjectStageManage _Manage = new ProjectStageManage();

            _Manage.Edit = "ADD";
            if (_Manage.ShowDialog() != DialogResult.OK)
            {
                string _where = " Where 1=1 ";
                QueryData(_where);
            }
        }
コード例 #2
0
 private void BtnUpd_Click(object sender, EventArgs e)
 {
     if (this.dataGridView1 != null && this.dataGridView1.Rows.Count > 0)
     {
         if (dataGridView1.CurrentRow != null)
         {
             string          _Company_Id      = "";
             string          _ProjectStage_Id = "";
             DataGridViewRow _dr = this.dataGridView1.Rows[dataGridView1.CurrentRow.Index];
             if (_dr != null)
             {
                 _ProjectStage_Id = string.IsNullOrEmpty((_dr.Cells["ProjectStage_Id"].Value.ToString()).ToString()) ? "" : (_dr.Cells["ProjectStage_Id"].Value.ToString()).ToString();
             }
             ProjectStageManage _Manage = new ProjectStageManage();
             _Manage.Edit            = "UPD";
             _Manage.ProjectStage_Id = _ProjectStage_Id;
             if (_Manage.ShowDialog() != DialogResult.OK)
             {
                 string _where = " Where 1=1 ";
                 QueryData(_where);
             }
         }
     }
 }