How do i change the background color from grey to yellow????
i can imagine it's pretty easy but i have no idea...
Anyone have any suggestions???
Printable View
How do i change the background color from grey to yellow????
i can imagine it's pretty easy but i have no idea...
Anyone have any suggestions???
Or just look thru the form properties and change the "BackColor" field to whatever color you want.Code:Form1.BackColor = &HFFFF&
Gl,
D!m
The primary and secondary colours have constants.
If hex is confusing for you, you can also specify the value in QBColor or RGB.Code:Me.BackColor = vbYellow
Code:'Using QBColor
Me.BackColor = QBColor(14)
'Using RGB
Me.BackColor = RGB(255, 255, 0)