Exemplo n.º 1
0
        private void btnDrpDb_Click(object sender, EventArgs e)
        {
            Drop_Database drop_database = new Drop_Database();

            this.Hide();
            drop_database.Show();
        }
Exemplo n.º 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();
     }
 }
Exemplo n.º 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();
     }
 }
Exemplo n.º 4
0
 private void btnDrpDb_Click(object sender, EventArgs e)
 {
     Drop_Database drop_database = new Drop_Database();
     this.Hide();
     drop_database.Show();
 }