lblPercentageOfStudents.Text = "Percentage of Students in " & cboDegree.Text & ": " & decPercentageOfStudents.ToString("N2") & "%"
In this code I have the color of the message that displays in the label set to "gold" but I'd like to change the color of the data stored in the decPercentageOfStudents variable to "white." How do I change the color of the data stored in the decPercentageOfStudents variable without changing the color of the whole message in the label? Thank you! :-)