Im trying to change text1.text color with a combo box but instead i get a error every time. This is the code i used
VB Code:
  1. Private Sub text1_change()
  2. Text1.Font = (Combo1.Text)
  3. Text1.FontSize = (Combo3.Text)
  4. Text1.ForeColor = (Combo2.Text)
  5. End Sub

But the other 2 work fine the forecolor gets a error when i choose the color.