Ayuda por favor,
Tengo varias listas con algunos datos y se repiten en todas, pero como puedo eliminar un nombre (elemento) de forma general en todas las listas sin usar el indice ya que no todas estan ordenadas igual.
Gracias
Ayuda por favor,
Tengo varias listas con algunos datos y se repiten en todas, pero como puedo eliminar un nombre (elemento) de forma general en todas las listas sin usar el indice ya que no todas estan ordenadas igual.
Gracias
Use the selection from a listview and find the value of the selection in your lists.
This is an example of the general problem of Relational Integrity (search the Web.)
Specific advice would require a description of all those lists, what is in them, and how they are related to each other.
To remove an item from a list, you first need the index
To get the index from the list, use the index in list block MIT App Inventor List Blocks
To remove the item from the list, use the remove list item block MIT App Inventor List Blocks together with the index from step 1
To remove the same item from several lists, repeat step 1 and 2 for all lists
Taifun
pero....como hago eso jajajaa por favor
El punto es que si elimino por indice, no se puede ya que en todas las listview no coindicen los mismos indices los nombres que deseeo se eliminen
por ejemplo:
lista 1: miguel
juan
Maria
pedro
lista 2: miguel
pedro
juan
maria
Lista 3: pedro
maria
juan
miguel
entonces si selecciono por indice, no coincidiran. pero si deseo eliminar a "miguel" y que se elimine "miguel " de las 3 listas....
As I initially suggested...
gracias, tengo la idea, pero que bloques y como los uso? ya que no puedo usar con indice de seleccion.... help
To delete by value from a list, you need a loop over numbers from length of list to 1 by -1
Examine the item at index n (select) to see if it should be deleted, and if so delete that index.
You have to run n from length of list down to 1 because the numbers collapse as you remove items.
This is why I told you to do step1 and 2 for each of the lists, because the index might be different for each list
Taifun
es que el punto no es ese, lo que deseo es de una sola lista, encontrar el "nombre" y eliminarlo..... pero, automaticamente que busque el mismo nombre en las otras listas tambien se eliminen esos mismos nombres.
Simplemente espectacular !!!
Si pudiera darte un abrazo, lo haria jajaj
Gracias