Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi anzeige als hexcode (https://www.delphipraxis.net/15816-anzeige-als-hexcode.html)

PiT123 4. Feb 2004 15:03


anzeige als hexcode
 
Hallo,

ich möchte bei einem Edit.Text oder Memo.Text noch zusätzlich in einem Fenster anzeigen wo dieser inhalt als Hexcode angezeigt wird, so wie bei einem Hex- Editor !

Ist das möglich ?

Mauli 4. Feb 2004 15:18

Re: anzeige als hexcode
 
IntToHex???

Delphi-Quellcode:
var
  i: Integer;

 i:=StrToInt(Edit1.Text);
 Label1.Caption:= IntToHex(i,4);


Alle Zeitangaben in WEZ +1. Es ist jetzt 15:27 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz