basically when an event has happened i want to display the result in a label called lblbottom, the element i was to display is unknown until the end of the for loop its running in.. i've got it to display at the right time already just 1 problem
if the red spike wins the race it displays:
"THE WINNER IS THE COLOR [RED SPIKE"
the code im using to get this to display is below >>
lblbottom.Text = "The Winner is the " & spikes(a).colour.ToString.Trim("[", "]") & " Spike"
what i would like it to display is:
"THE WINNER IS THE RED SPIKE"
how would i do this ?!
if the red spike wins the race it displays:
"THE WINNER IS THE COLOR [RED SPIKE"
the code im using to get this to display is below >>
lblbottom.Text = "The Winner is the " & spikes(a).colour.ToString.Trim("[", "]") & " Spike"
what i would like it to display is:
"THE WINNER IS THE RED SPIKE"
how would i do this ?!