Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void
		private void bEditSQL_Click(object sender, System.EventArgs e)
		{
			SQLCtl sc = new SQLCtl(_Draw, cbDataSource.Text, this.tbSQL.Text, _dsv.QueryParameters);
            try
            {
                DialogResult dr = sc.ShowDialog(this);
                if (dr == DialogResult.OK)
                {
                    tbSQL.Text = sc.SQL;
                }
            }
            finally
            {
                sc.Dispose();
            }
		}
Esempio n. 2
0
 private void bEditSQL_Click(object sender, System.EventArgs e)
 {
     SQLCtl sc = new SQLCtl(_Draw, cbDataSource.Text, this.tbSQL.Text, _dsv.QueryParameters);
     try
     {
         DialogResult dr = sc.ShowDialog(this);
         if (dr == DialogResult.OK)
         {
             tbSQL.Text = sc.SQL;
         }
     }
     finally
     {
         sc.Dispose();
     }
 }