Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. SELECT `ID_Pacote`, `Nome`, `peca`, `Quantidade`, `Data_entrada`,`Data_saida` FROM `pacote` WHERE = ?
  2.  
  3. private void button1_Click(object sender, EventArgs e)
  4. {
  5. try
  6. {
  7. this.pacoteTableAdapter.FillByFiltro(this.prodpacoteDataSet1.pacote, textBox1.Text);
  8. this.reportViewer1.RefreshReport();
  9. }
  10. catch (System.Exception ex)
  11. {
  12. System.Windows.Forms.MessageBox.Show(ex.Message);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement