Ejemplo n.º 1
0
 /// <summary>
 /// vouchertype search function
 /// </summary>
 public void SearchGridFill()
 {
     try
     {
         VoucherTypeSP spVoucherType = new VoucherTypeSP();
         DataTable dtblSearch = new DataTable();
         dtblSearch = spVoucherType.VoucherTypeSearch(txtVoucherNameSearch.Text.Trim(), cmbTypeOfVoucherSearch.Text);
         dgvVoucherType.DataSource = dtblSearch;
     }
     catch (Exception ex)
     {
         MessageBox.Show("VT05:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }