Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/07/2010, 16:58
ozkar911
 
Fecha de Ingreso: abril-2010
Mensajes: 3
Antigüedad: 14 años
Puntos: 0
Respuesta: indice de listview

Gracias!!
Cita:
private int LVItemSeleccionado(ListView LView)
{
for (int i = 0; i < LView.Items.Count; i++)
{
if (LView.Items[i].Selected == true)
return i;
}
return -1;
}
necesitaba esto me funciono a la perfeccion Grax!