Ejemplo n.º 1
0
 private void dgvDatos_AfterRowUpdate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e)
 {
     try
     {
         connection.Ejecutar("LOG",
                             "sp_Reportes",
                             new string[] { },
                             new string[] { "@TipoConsulta", "@Fecha", "@WhsCode", "@DocEntry", "@LineNum", "@tipoDoc" },
                             ref valuesOut, 17, dgvDatos.ActiveRow.Cells["Fecha de arribo"].Value, dgvDatos.ActiveRow.Cells["Lugar de arribo"].Value, dgvDatos.ActiveRow.Cells["DocEntry"].Value, dgvDatos.ActiveRow.Cells["LineNum"].Value, dgvDatos.ActiveRow.Cells["Tipo"].Value);
     }
     catch (Exception ex)
     {
     }
 }
Ejemplo n.º 2
0
        private void UlGridMarca_BeforeRowActivate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e)
        {
            try
            {
                in_Marca_Info per = new in_Marca_Info();

                if (e.Row.Index >= 0)
                {
                    marcaI = (in_Marca_Info)e.Row.ListObject;
                }
            }
            catch (Exception ex)
            {
                Log_Error_bus.Log_Error(ex.ToString());
            }
        }
Ejemplo n.º 3
0
 private void grdLocation_AfterRowUpdate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e)
 {
     functions.updateData(locations.Tables[0], locationQuery);
 }
Ejemplo n.º 4
0
 private void grdSize_AfterRowUpdate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e)
 {
     functions.updateData(sizes.Tables[0], sizeQuery);
 }
Ejemplo n.º 5
0
 private void grdItems_AfterRowUpdate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e)
 {
     functions.updateData(items.Tables[0], itemQuery);
 }
Ejemplo n.º 6
0
 private void dgvLotes_AfterRowUpdate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e)
 {
 }
Ejemplo n.º 7
0
 private void Grid_AfterRowInsert(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e)
 {
     this.Update();
     //Grid.DataBind();
     //MoveLast();
 }