void Reset(IEnumerable <string> names)
        {
            DSaves.ResetOptions(names);

            if (!DSaves.options.Any())
            {
                BLoad.Disable();
            }
            BLoadPrevious.Disable();
            BAdd.Disable();
        }
Exemple #2
0
        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();
        }
Exemple #3
0
 private void toolStripButton2_Click(object sender, EventArgs e)
 {
     BLoad.ChangePlus();
 }
Exemple #4
0
 private void toolStripButton1_Click(object sender, EventArgs e)
 {
     BLoad.change_();
 }
Exemple #5
0
 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     BLoad.obj();
 }
Exemple #6
0
 private void Builds_Load(object sender, EventArgs e)
 {
     BLoad.load();
 }
 void CheckLoadEnabled()
 {
     BLoad.Enable();
     BLoadPrevious.Enable();
 }