——此文章摘自《Delphi開發經驗技巧寶典》定價
¥
特價
¥
購買>>
http://track
linktech
cn/?m_id=dangdang&a_id=A
&l=
&l_type
=
width=
height=
border=
nosave>
http://developcsaicn/delphi/images/jpg>
圖 根據ASCII碼獲得字母
主要代碼如下
procedure TForm
Button
Click(Sender: TObject);
begin
if (((StrToInt(Edit
Text))>=
)and((StrToInt(Edit
Text))<=
))or
(((StrToInt(Edit
Text))>=
)and((StrToInt(Edit
Text))<=
)) then
Edit
Text:=chr(strtoint(edit
Text));
end;
字母的ASCII碼
本實例是用ord ()函數將字符轉換成ASCII碼運行結果如圖所示
http://developcsaicn/delphi/images/jpg>
圖 獲得字母的ASCII碼
主要代碼如下
procedure TForm
Edit
KeyPress(Sender: TObject; var Key: Char);
begin
if not (key in [
a
z
A
Z
#
]) then
key:=#
;
if (Ord(key)>
)and(Ord(key)<
) then
x:=IntToStr(Ord(key));
end;
right>[http://developcsaicn/delphi/htm>] []
From:http://tw.wingwit.com/Article/program/Delphi/201311/8497.html