Form colour

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I have a form & a tab control on it. How do I change colour of both
programmatically?

Thanks

Regards
 
I need to assign rgb 200, 211, 230 to the backcolor. What is the correct
syntax. I have tried me.backcolor = color.argb(0, 200, 211, 230) but it says
control does not support colours with alpha.

Thanks

Regards
 
John said:
I need to assign rgb 200, 211, 230 to the backcolor. What
is the correct syntax. I have tried me.backcolor =
color.argb(0, 200, 211, 230) but it says
control does not support colours with alpha.

Assign an opaque color:

\\\
Me.BackColor = Color.FromArgb(255, 200, 211, 230)
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top