Hi,
I like to known how I can retrieve a specific field from List
Type Item (Nombre As String, Telefono As String )
Dim lst as List
Dim it as Item
it.Nombre="Aa"
it.Telefono="123"
lst.add(it)
I would like to extract for example field "Telefono" from the list
Suggestions?
I like to known how I can retrieve a specific field from List
Type Item (Nombre As String, Telefono As String )
Dim lst as List
Dim it as Item
it.Nombre="Aa"
it.Telefono="123"
lst.add(it)
I would like to extract for example field "Telefono" from the list
Suggestions?
Last edited: