Hi Joe,
This should work:
Thanks,
Prasad
This should work:
Code:
arrRadio=Array("Business","Economy","First")
for Count=0 to Ubound(arrRadio)
bState=Window("Flight Reservation").WinRadioButton(arrRadio(Count)).GetROProperty("checked")
If Instr(bState,"ON")>0 Then
strButtonName=Window("Flight Reservation").WinRadioButton(arrRadio(Count)).GetROProperty("text")
objWorkbook.Sheets("Sheet1").Cells(i,11).Value=strButtonName
Exit For
End If
NextThanks,
Prasad

