This might be useful on occasion to store a set of data associated with a particular View.[/QUOTE said:
I see this being used in the table example where the row, col are stored in the tag.
SInce a user may never select a radio button (and raise event), I use the following code to determine which item is checked when I return my custom panel. Is there a better way to handle this?
If RdoOff.Checked Then
RbTag = 1
End If
If RdoXYZ.Checked Then
RbTag = 2
End If
If RdoDEF.Checked Then
RbTag = 3
End If
If RdoOn.Checked Then
RbTag = 4
End If
Thanks