jimmythegeek
Programmer
I dynamically generate a set of radio buttons depending on how many records are in a given table (anywhere between 4 and 20). I need to get the value of the one that's selected. The name of the form is frmOtherAdmin, and the name of the radio buttons are radEntity. However I cannot get a value. Any help is greatly appreciated, Thanks in advance.
===============
Dim val, i
With frmOtherAdmin
For i = 0 to .radEntity.Count
If .radEntity(i).checked Then
val = .radEntity(i).value
Exit For
End If
Next
End With Jim Lunde
compugeeks@hotmail.com
We all agree your theory is crazy, but is it crazy enough?
===============
Dim val, i
With frmOtherAdmin
For i = 0 to .radEntity.Count
If .radEntity(i).checked Then
val = .radEntity(i).value
Exit For
End If
Next
End With Jim Lunde
compugeeks@hotmail.com
We all agree your theory is crazy, but is it crazy enough?