Ver Mensaje Individual
  #8 (permalink)  
Antiguo 03/01/2012, 09:32
delgaillo
 
Fecha de Ingreso: abril-2010
Mensajes: 50
Antigüedad: 14 años, 1 mes
Puntos: 2
Respuesta: Flexgrid y Datagridview

Lo logré, la solución es la siguiente:

If DGVRecibidas.Item(0, DGVRecibidas.CurrentRow.Index).Value IsNot Nothing Then
url = DGVRecibidas.CurrentRow.Cells("URL").Value()
FormWebBrowser.ShowDialog()
Else
MsgBox("Debe seleccionar una fila", MsgBoxStyle.Exclamation, "")
End If


Con la opción multirowselecting = false

De esa manera te aseguras de que haya fila seleccionada siempre.

Un saludo y gracias.