[RESOLVED] Changing Font Color in a Label?
I would like to find out how to use a customized color of a certain font inside a text label.
Like, say, if I wanted to use a RGB variation like say, for example, 34, 22, 18 (and no I am not actually planning on using that exact combination, but just giving an example), what would I do?
Re: Changing Font Color in a Label?
Use RGB function but supply actual Red, Green and Blue colors:
Code:
Private Sub Form_Load()
Label1.ForeColor = RGB(34, 22, 18)
End Sub
Re: [RESOLVED] Changing Font Color in a Label?