Help in VB

Yo-Yo

Member
I forgot how to change the font color in VB need to know because my background for the program is dark. I cant find how to. Please help.
 
If you want the colour of the font to be static (it doesn't really matter either way) , you could set the font colour is the code its self.
For Example:
Sub optRed_Click()
Message.ForeColor = Red
End Sub
 
Back
Top