Mega Code Archive

 
Categories / Delphi / Algorithm Math
 

How to convert Hex codes to Integer

Title: How to convert Hex codes to Integer // This tip convert the Hex Code AFFE to integer procedure TForm1.Button1Click(Sender: TObject); begin label1.Caption := IntToStr(StrToInt('$AFFE')); //45054 end;