Skip to main content

AccessTr.neT


Etiketler
Yazar: ucloy - Cevaplar: 4 - İzleme: 3865
Hexadecimal sayıyı Decimal sayıya çevirme
Herkese Merhaba

Sayın hocalarım
Ekteki " HEX_DEN_DECE" dosyadaki " HEX " tablosunda hexadecimal olan sayıları decimal e çevirmek istiyorum bunu nasıl yapabilirim
Yardımlarınız için teşekkür ederim

Selamlar
Yazar: accessman - Cevaplar: 0 - İzleme: 478
Hexadecimal To String Color
Public Function GetHexColor(strHex As String) As Long
    'converts Hex string to long number, for colors
    'the leading # is optional

    'example usage
    'Me.iSupplier.BackColor = HexColor("FCA951")
    'Me.iSupplier.BackColor = HexColor("#FCA951")

    'the reason for this function is to programmatically use the
    'Hex colors generated by the color picker.
    'The trick is, you need to reverse the first and last hex of the
    'R G B combination and convert to Long
    'so
Task