Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/01/2007, 18:25
juantiva
 
Fecha de Ingreso: junio-2006
Mensajes: 109
Antigüedad: 18 años, 8 meses
Puntos: 2
Re: Obtener valor Hexadecimal de un color

Private Function GetHexColor(ByVal color As System.Drawing.Color) As String
Return "#" & Hex(color.R) & Hex(color.G) & Hex(color.B)
End Function