Private Sub rdPHP_Click()
rdAsia.Value = True
'This clicks Asia and defaults Europe to unclicked.
'Then the code in Asia runs so ROM and DEN becomes unclicked.
End Sub
Private Sub rdSGP_Click()
rdAsia.Value = True
'This clicks Asia and defaults Europe to unclicked.
'Then the code in Asia runs so ROM and DEN becomes unclicked.
End Sub
Private Sub rdVIE_Click()
rdAsia.Value = True
'This clicks Asia and defaults Europe to unclicked.
'Then the code in Asia runs so ROM and DEN becomes unclicked.
End Sub
Private Sub rdAsia_Click()
rdROM.Value = False
rdDEN.Value = False
'This clicks Asia and defaults Europe to unclicked.
'Then the code in Asia runs so ROM and DEN becomes unclicked.
End Sub
Private Sub rdROM_Click()
rdEurope.Value = True
'This clicks Europe and defaults Asia to unclicked.
'Then the code in Europe runs so PHP, SGP, and VIE becomes unclicked.
End Sub
Private Sub rdDEN_Click()
rdEurope.Value = True
'This clicks Europe and defaults Asia to unclicked.
'Then the code in Europe runs so PHP, SGP, and VIE becomes unclicked.
End Sub
Private Sub rdEurope_Click()
rdPHP.Value = False
rdSGP.Value = False
rdVIE.Value = False
'This clicks Europe and defaults Asia to unclicked.
'Then the code in Europe runs so PHP, SGP, and VIE becomes unclicked.
End Sub