Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/05/2005, 02:41
Avatar de neivan
neivan
 
Fecha de Ingreso: febrero-2005
Mensajes: 539
Antigüedad: 20 años
Puntos: 1
Dim fpago As String = radioButtonList.SelectedItem.Text

Esto te devolvera el texto que aparece en el boton que tenga la eleccion

Si queires que te devuleva el valor

radioButtonList.SelectedItem.Value

Para comprobar si hay uno elegido

if radioButtonList.selectedindex > - 1 then

else
'no hay elegidos ninguno
end if