S
stoneking
Unregistered / Unconfirmed
GUEST, unregistred user!
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,2) + ' ';
except
Beep;
end;
end;
end;
我想写一个字符到十六进制的小程序,用IntToHex()时老报错,于是找到帮助的一个例
子,但也有问题,不知是何原因。请帮忙!!
var
i: Integer;
begin
Label1.Caption := '';
for i := 1 to Length(Edit1.Text) do
begin
try
Label1.Caption := Label1.Caption + IntToHex(Edit1.Text,2) + ' ';
except
Beep;
end;
end;
end;
我想写一个字符到十六进制的小程序,用IntToHex()时老报错,于是找到帮助的一个例
子,但也有问题,不知是何原因。请帮忙!!