Jump to content

Search the Community

Showing results for tags 'hex conversion'.

  • Search By Tags

    • hex conversion ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Found 2 results

  1. For some reason, I can't convert to Hex a Decimal color that has been calculated. For example, this works: Local $iColor = 3310546 ConsoleWrite("$iColor (dec): " & $iColor & ", $iColor (hex): " & Hex($iColor, 6) & @CRLF) giving the expected output: $iColor (dec): 3310546, $iColor (h...
  2. Hi, I have a file and I'm using the following code to get its hex and export it to a text file. Local $FileOpen, $FileRead, $Hex $FileOpen = FileOpen("C:\game.save",16) $FileRead = FileRead($FileOpen) FileClose($FileOpen) ;convert to hex $Hex = Hex($FileRead) FileWrite("C:\save.txt",$H...
×
×
  • Create New...