03/01/2012, 09:32
|
| | Fecha de Ingreso: abril-2010
Mensajes: 50
Antigüedad: 14 años, 7 meses 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. |