private sub timer1_timer()Dim a As IntegerDim b As IntegerDim c As Integera = Int(Rnd() * 255)b = Int(Rnd() * 255)c = Int(Rnd() * 255)lblTitle.ForeColor = RGB(a, b, c)end sub