Thema: Delphi StrToChar???????

Einzelnen Beitrag anzeigen

HAF68k
(Gast)

n/a Beiträge
 
#13
  Alt 17. Jan 2003, 18:10
das ist der eintrag von der delphi hilfe zum thema
mit der ORD-funktion.
Code:
uses Dialogs;
type

   Colors = (RED,BLUE,GREEN);

var

  S: string;
 begin
   S := 'BLUE has an ordinal value of ' + IntToStr(Ord(BLUE)) + #13#10;
   S := S + 'The ASCII code for "c" is ' + IntToStr(Ord('c')) +  ' decimal';
   MessageDlg(S, mtInformation, [mbOk], 0);
 end;
ich hoffe du hast das gemeint.
ansonsten meldest dich halt
  Mit Zitat antworten Zitat