예제 #1
0
        void Reset(IEnumerable <string> names)
        {
            DSaves.ResetOptions(names);

            if (!DSaves.options.Any())
            {
                BLoad.Disable();
            }
            BLoadPrevious.Disable();
            BAdd.Disable();
        }
예제 #2
0
파일: Builds.cs 프로젝트: DSVAR/KursovaBD
        private void toolStripButton4_Click(object sender, EventArgs e)
        {
            int    ids = dataGridView1.CurrentCell.RowIndex;
            string ks  = dataGridView1.Rows[ids].Cells[0].Value.ToString();

            id = int.Parse(ks);

            BDelete.DELETE();

            BLoad.load();
        }
예제 #3
0
파일: Builds.cs 프로젝트: DSVAR/KursovaBD
 private void toolStripButton2_Click(object sender, EventArgs e)
 {
     BLoad.ChangePlus();
 }
예제 #4
0
파일: Builds.cs 프로젝트: DSVAR/KursovaBD
 private void toolStripButton1_Click(object sender, EventArgs e)
 {
     BLoad.change_();
 }
예제 #5
0
파일: Builds.cs 프로젝트: DSVAR/KursovaBD
 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     BLoad.obj();
 }
예제 #6
0
파일: Builds.cs 프로젝트: DSVAR/KursovaBD
 private void Builds_Load(object sender, EventArgs e)
 {
     BLoad.load();
 }
예제 #7
0
 void CheckLoadEnabled()
 {
     BLoad.Enable();
     BLoadPrevious.Enable();
 }