private void btnBuscaEstoque_Click(object sender, EventArgs e) { this._modelEstoque = new mEstoque(); frmBuscaEstoque objForm = new frmBuscaEstoque(this._modelEstoque); try { DialogResult resultado = objForm.ShowDialog(); if (resultado == DialogResult.Cancel) { this._modelEstoque = null; this.txtEstoque.Text = string.Empty; } else { this.txtEstoque.Text = this._modelEstoque.Dsc_estoque; } } catch (Exception ex) { throw ex; } finally { objForm = null; } }
private void AbreTelaBuscaEstoque() { frmBuscaEstoque telaEstoque = null; try { this._modelEstoque = new mEstoque(); telaEstoque = new frmBuscaEstoque(_modelEstoque); DialogResult resultado = telaEstoque.ShowDialog(); if (resultado == DialogResult.Cancel) { this._modelEstoque = null; } else { this.txtEstoque.Text = this._modelEstoque.Dsc_estoque; } } catch (Exception ex) { throw ex; } finally { telaEstoque = null; } }