コード例 #1
0
ファイル: frm_AdmVehiculo.cs プロジェクト: iBohemio/TPPSoft
        private void txtFiltro_TextChanged(object sender, EventArgs e)
        {
            try
            {
                VehiculoBC objVehiculoBC = new VehiculoBC();
                dgvVehiculo.DataSource = objVehiculoBC.Filtro(txtFiltro.Text);

            }
            catch (Exception)
            {
                MessageBox.Show("Disculpe, el sistema se encuetra fuera de servicio",
                    this.Text,
                    MessageBoxButtons.OK,
                    MessageBoxIcon.Error);
            }
        }