Hi,
Have a look the attached image.
I want to use the backcolor of the image as the backcolor of my form. But I am unable to find the exact value for it. I checked the value in Photoshop but still the value is not correct.
Thanx.
Printable View
Hi,
Have a look the attached image.
I want to use the backcolor of the image as the backcolor of my form. But I am unable to find the exact value for it. I checked the value in Photoshop but still the value is not correct.
Thanx.
VB Code:
Private Sub Form_Load() Me.BackColor = RGB(239, 231, 208) End Sub Private Sub Command1_Click() MsgBox (Me.BackColor) End Sub