Delphi转换Accis编码的函数是什么?与CHR()相反的(50分)

  • 主题发起人 主题发起人 vfphome
  • 开始时间 开始时间
V

vfphome

Unregistered / Unconfirmed
GUEST, unregistred user!
Delphi转换Accis编码的函数是什么?与CHR()相反的
最好有事例,,谢谢
 
Showmessage(Inttostr(ord('A')));
65
 
var
ch: char;
begin
ch := 'A';
ShowMessage(IntToStr(ord(ch)));
end;
 
如果是汉字呢?
 
汉字不是ASCII码吧。
来自:tseug, 时间:2002-11-26 15:40:00, ID:1461345
procedure TForm1.Button3Click(Sender: TObject);
var
S : String;
W : WideChar;
begin
S := '好';
W := WideString(S)[1];
ShowMessage(IntToStr(Ord(W)));
end;
 
ord函数啦,函数格式,帮助里有
 
后退
顶部