I have a large web application with many webforms that we use a specific backcolor to indicate required fields. I'm trying to set the backcolor of the radcombobox in the Page_PreRender. The trouble I'm having is the following.
this works:
RadComboBox1.BackColor = Drawing.Color.Blue
this does not work:
RadComboBox1.BackColor = Drawing.ColorTranslator.FromHtml("#ccffff")
I need to use this color as it has been the required field backcolor in this application for almost 3 years.
Ideas anyone?
Jeremy
this works:
RadComboBox1.BackColor = Drawing.Color.Blue
this does not work:
RadComboBox1.BackColor = Drawing.ColorTranslator.FromHtml("#ccffff")
I need to use this color as it has been the required field backcolor in this application for almost 3 years.
Ideas anyone?
Jeremy