예제 #1
0
파일: Index.cs 프로젝트: sincaemanuel/DBMS
        private void btnDrpDb_Click(object sender, EventArgs e)
        {
            Drop_Database drop_database = new Drop_Database();

            this.Hide();
            drop_database.Show();
        }
예제 #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (comboBox1.SelectedItem.ToString() != "")
     {
         DataLayer.Configuration.DropDatabase(comboBox1.SelectedItem.ToString());
         Drop_Database drop = new Drop_Database();
         this.Dispose();
         drop.Show();
     }
 }
예제 #3
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (comboBox1.SelectedItem.ToString() != "")
     {
         DataLayer.Configuration.DropDatabase(comboBox1.SelectedItem.ToString());
         Drop_Database drop = new Drop_Database();
         this.Dispose();
         drop.Show();
     }
 }
예제 #4
0
파일: Index.cs 프로젝트: sincaemanuel/DBMS
 private void btnDrpDb_Click(object sender, EventArgs e)
 {
     Drop_Database drop_database = new Drop_Database();
     this.Hide();
     drop_database.Show();
 }