delphi 文本框中如何禁止输入空格
procedureTForm1.Edit1KeyPress(Sender:TObject;varKey:Char);beginif(Keyin['0'..'9','A'....
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
if (Key in ['0'..'9', 'A'..'Z', 'a'..'z', #8, #46]) then
Key := #0;
end;
仍然可以输入空格 展开
begin
if (Key in ['0'..'9', 'A'..'Z', 'a'..'z', #8, #46]) then
Key := #0;
end;
仍然可以输入空格 展开
3个回答
展开全部
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
if key=#32 then//或者key=' '
Key := #0;
end;
空格的ascii码 是32
begin
if key=#32 then//或者key=' '
Key := #0;
end;
空格的ascii码 是32
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询