Hi, so im having the user pick two separate colors. Now when they pick the 2.... im going to run an event that determines that combination..... for an example if the user picks red and blue the outcome will be +5 points. Now the only way i can think of how to have it go through all of the possible combinations is using IF statements..... like
'comboboxes are where users will select colors
if combobox.items(0) and Combobox2.items(1) then
score += 5
end if
is there a more efficient way? because im going to have about 60 different combinations.... and IF there is a better way DONT write all the code for me just point me in the right direction. thanks