Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2006.09.03;
Скачать: CL | DM;

Вниз

Ошибка в справке Delphi   Найти похожие ветки 

 
Piter ©   (2006-08-07 19:09) [0]

пример на функцию IntToHex:


The following example uses an edit control, a button, and a label on a form. When the button is clicked, the hexadecimal value of each character in the edit control is displayed in the label.

procedure TForm1.Button1Click(Sender: TObject);

var
 i: Integer;
begin
 Label1.Caption := "";
 for i := 1 to Length(Edit1.Text) do
 begin
   try
     Label1.Caption := Label1.Caption + IntToHex(Edit1.Text[i],2) + " ";
   except
     Beep;
   end;
 end;
end;


Chr что ли забыли?


 
Reindeer Moss Eater ©   (2006-08-07 19:31) [1]

Byte забыли


 
Joe_from_smart   (2006-08-07 19:52) [2]

А куда там chr?


 
Piter ©   (2006-08-07 21:03) [3]

ой, я имел в виду Ord конечно :)



Страницы: 1 вся ветка

Текущий архив: 2006.09.03;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.028 c
15-1155239556
TGX
2006-08-10 23:52
2006.09.03
Проблемы с монитором!


15-1151658614
TUser
2006-06-30 13:10
2006.09.03
Не наметить ли в Новосибирске ...


9-1134279157
GRAVIX
2005-12-11 08:32
2006.09.03
Спрайт в OPENGL


9-1134733120
julai
2005-12-16 14:38
2006.09.03
Статьи по OpenGL


15-1154899987
Andy BitOff
2006-08-07 01:33
2006.09.03
TRegExpr by Andrey V. Sorokin. Это далеко не лучший выбор.