Delphi控制输入为数字或字母
Delphi 控制输入为数字或字母
if not (Key in ['0'..'9', 'a'..'z', 'A'..'Z', #8, #13]) then
begin
Key := #0;
ShowMessage('请输入数字或字母');
end;
摘自 Ciske Liu
补充:软件开发 , Delphi ,
Delphi 控制输入为数字或字母
if not (Key in ['0'..'9', 'a'..'z', 'A'..'Z', #8, #13]) then
begin
Key := #0;
ShowMessage('请输入数字或字母');
end;
补充:软件开发 , Delphi ,
上一个:delphi StringGrid排序
下一个:delphi监控系统时间