Ejemplo n.º 1
0
 private void txtEstado_TextChanged(object sender, EventArgs e)
 {
     if (txtIdEstado.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgEstado, Tabla.GetRecordsFiltersLike("Estado", "Estado", txtEstado.Text));
     }
 }
Ejemplo n.º 2
0
 private void txtUsuario_TextChanged(object sender, EventArgs e)
 {
     if (txtIdUsuario.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgUsuario, Tabla.GetRecordsFiltersLike("usuario", "nombre", txtNombres.Text));
     }
 }
Ejemplo n.º 3
0
 private void txtPerfil_TextChanged(object sender, EventArgs e)
 {
     if (txtIdPerfil.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgPerfil, Tabla.GetRecordsFiltersLike("Rol", "Rol", txtPerfil.Text));
     }
 }
Ejemplo n.º 4
0
 private void txtProveedor_TextChanged(object sender, EventArgs e)
 {
     if (txtidProveedor.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgProveedor, Tabla.GetRecordsFiltersLike("proveedor", "nombre", txtNombreProv.Text));
     }
 }
Ejemplo n.º 5
0
 private void txtProducto_TextChanged(object sender, EventArgs e)
 {
     if (txtIdProducto.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgProducto, Tabla.GetRecordsFiltersLike("producto", "descripcion", txtDescripcion.Text));
     }
 }
Ejemplo n.º 6
0
 private void txtCliente_TextChanged(object sender, EventArgs e)
 {
     if (txtIdCliente.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgCliente, Tabla.GetRecordsFiltersLike("cliente", "nombre", txtNombre.Text));
     }
 }
Ejemplo n.º 7
0
 private void txtMarca_TextChanged(object sender, EventArgs e)
 {
     if (txtIdMarca.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgMarcas, Tabla.GetRecordsFiltersLike("marca", "marca", txtMarca.Text));
     }
 }
Ejemplo n.º 8
0
 private void txtPresentacion_TextChanged(object sender, EventArgs e)
 {
     if (txtIdPresentacion.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgPresentacion, Tabla.GetRecordsFiltersLike("UnidadMedida", "UnidadMedida", txtPresentacion.Text));
     }
 }
Ejemplo n.º 9
0
 private void txtCategoria_TextChanged(object sender, EventArgs e)
 {
     if (txtIdCategoria.TextLength <= 0)
     {
         DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
         DBM.CLS.Funciones.FillGridView(dgCategoria, Tabla.GetRecordsFiltersLike("Familia", "Familia", txtCategoria.Text));
     }
 }
Ejemplo n.º 10
0
 private void txtFiltro_TextChanged(object sender, EventArgs e)
 {
     DBM.CLS.QUERY Table = new DBM.CLS.QUERY();
     DBM.CLS.Funciones.FillGridView(dgUsuario, Table.GetRecordsFiltersLike("usuario", "nombre", txtFiltro.Text));
 }
Ejemplo n.º 11
0
 private void txtComandoFiltro_TextChanged(object sender, EventArgs e)
 {
     DBM.CLS.QUERY Tabla = new DBM.CLS.QUERY();
     DBM.CLS.Funciones.FillGridView(dgComando, Tabla.GetRecordsFiltersLike("comando", "comando", txtComandoFiltro.Text));
 }
Ejemplo n.º 12
0
 private void txtFiltroProveedor_TextChanged(object sender, EventArgs e)
 {
     DBM.CLS.QUERY Table = new DBM.CLS.QUERY();
     DBM.CLS.Funciones.FillGridView(dgProveedor, Table.GetRecordsFiltersLike("proveedor", "nombre", txtFiltroProv.Text));
 }
Ejemplo n.º 13
0
 private void btnClienteSearch_Click(object sender, EventArgs e)
 {
     DBM.CLS.QUERY Table = new DBM.CLS.QUERY();
     DBM.CLS.Funciones.FillGridView(dgCliente, Table.GetRecordsFiltersLike("cliente", "nombre", txtFiltroCliente.Text));
 }
Ejemplo n.º 14
0
 private void btnProductoSearch_Click(object sender, EventArgs e)
 {
     DBM.CLS.QUERY Table = new DBM.CLS.QUERY();
     DBM.CLS.Funciones.FillGridView(dgProducto, Table.GetRecordsFiltersLike("producto", "descripcion", txtFiltroProducto.Text));
 }