如何设置delphi中combobox数据范围

求大神帮助!我想设置Combobox的取值范围,比如Combobox1在0~10之间,Combobox2分两段一段0~9.9可以有小数点,当超过9.9后,为整数?怎么实现... 求大神帮助!
我想设置Combobox的取值范围,比如Combobox1在0~10之间,Combobox2分两段一段0~9.9可以有小数点,当超过9.9后,为整数?
怎么实现啊~~
谢谢
展开
 我来答
none_six
2013-08-16 · TA获得超过325个赞
知道小有建树答主
回答量:479
采纳率:100%
帮助的人:364万
展开全部
If not (Key in ['0'..'9','.',#27,#13,#8]) then
Key:=0;

这样支持0到9还有小数点,同时也支持回车、退格、ESC
追问
不行啊,key是char型,不能和整形比较啊
追答
没问题呀,我一直这么用。
我做了一个函数
//================================================================
//==========控制按键字符函数(用于文本框等只接受指定字符)==========
//================================================================
Function MyKey(SendKey:Char):Char;
begin
//限制文本框只接受相关字符
If not (SendKey in ['0'..'9','.',#27,#13,#8]) then
MyKey:=#0
Else
MyKey:=SendKey;
end;

使用时这样调用
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
Key:=MyKey(Key);
end;
微风8009
2013-08-16 · TA获得超过304个赞
知道小有建树答主
回答量:251
采纳率:0%
帮助的人:164万
展开全部
在combobox1的onkeypress事件中写代码
if not (key in [0..9]) then
key:=0;

在combobox2的onkeypress事件中写代码
if not (key in [0..9,'.']) then
key:=0;
if key='.' and strtofloat(combobox2.text)>9.9 then
key:=0;
追问
不行啊,key是char型,不能和整形比较啊
追答
在combobox1的onkeypress事件中写代码
if not (key in ['0'..'9']) then
key:=0;

在combobox2的onkeypress事件中写代码
if not (key in ['0'..'9','.']) then
key:=0;
if key='.' and strtofloat(combobox2.text)>9.9 then
key:=0;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式