Make Array for your label like a lbl(0) -> lbl(10) then there is less code

VB Code:
  1. Public Sub ChangeLabelColor(index As Integer)
  2.  
  3.     With lbl(index)
  4.     .Caption = 1
  5.     .BackColor = RGB(44, 164, 214)
  6.     .ForeColor = RGB(255, 255, 255)
  7.     End With
  8.  
  9. End Sub