I have a radio button field that is defaulted to blank, but I have to validate on save to make sure it is equal to one or the other option (not blank!). I have:
If ( source.FieldGetText( "AcctType" ) = "" ) Then
Messagebox( "Please enter the account type." )
Call source.GoToField( "AcctType" )
Continue = False
End If
But, I’m getting an error. What is the best way to validate a radio button field? I’m assuming since I can’t actually ‘GoTo’ the radio button field that is why it’s erroring out??