Ejemplo n.º 1
0
 private void Bot_ubicar_Click(object sender, EventArgs e)
 {
     if (txt_ubicacion.Text == "")
     {
         MessageBox.Show("Debe Introducir la Ubicacion para poder ejecutar este comando.,");
         return;
     }
     foreach (Item item in Lista)
     {
         manager.SetDataUbicationToAlmacenFromRC(item.Tipo, txt_ubicacion.Text, item.Unique_code);
     }
     MessageBox.Show("Proceso con Exito.");
 }