DELPHI 简单问题
怎么简化以下的代码,classify是combobox控件因为风格是csOwnerDrawFixed,所以TEXT不能直接赋值不然一句代码classify.text:=F...
怎么简化以下的代码,classify是combobox控件
因为风格是csOwnerDrawFixed,所以TEXT不能直接赋值
不然一句代码classify.text:=FieldByName('classify').AsString;就可以搞定
with dmdata.qry do
begin
if FieldByName('classify').AsString='原材料' then
classify.ItemIndex:=0;
if FieldByName('classify').AsString='生产物料' then
classify.ItemIndex:=1;
if FieldByName('classify').AsString='办公用品' then
classify.ItemIndex:=3;
if FieldByName('classify').AsString='生活用品' then
classify.ItemIndex:=4;
if FieldByName('classify').AsString='零配件' then
classify.ItemIndex:=5;
if FieldByName('classify').AsString='建筑' then
classify.ItemIndex:=6;
if FieldByName('classify').AsString='设备' then
classify.ItemIndex:=7;
if FieldByName('classify').AsString='维修' then
classify.ItemIndex:=8;
if FieldByName('classify').AsString='厨房' then
classify.ItemIndex:=9;
if FieldByName('classify').AsString='运输报关' then
classify.ItemIndex:=10;
if FieldByName('classify').AsString='运输费' then
classify.ItemIndex:=11;
if FieldByName('classify').AsString='车辆费' then
classify.ItemIndex:=12;
if FieldByName('classify').AsString='应酬/接待' then
classify.ItemIndex:=13;
if FieldByName('classify').AsString='福利费' then
classify.ItemIndex:=14;
if FieldByName('classify').AsString='差旅费' then
classify.ItemIndex:=15;
if FieldByName('classify').AsString='额外支出' then
classify.ItemIndex:=16;
if FieldByName('classify').AsString='其他' then
classify.ItemIndex:=17;
end; 展开
因为风格是csOwnerDrawFixed,所以TEXT不能直接赋值
不然一句代码classify.text:=FieldByName('classify').AsString;就可以搞定
with dmdata.qry do
begin
if FieldByName('classify').AsString='原材料' then
classify.ItemIndex:=0;
if FieldByName('classify').AsString='生产物料' then
classify.ItemIndex:=1;
if FieldByName('classify').AsString='办公用品' then
classify.ItemIndex:=3;
if FieldByName('classify').AsString='生活用品' then
classify.ItemIndex:=4;
if FieldByName('classify').AsString='零配件' then
classify.ItemIndex:=5;
if FieldByName('classify').AsString='建筑' then
classify.ItemIndex:=6;
if FieldByName('classify').AsString='设备' then
classify.ItemIndex:=7;
if FieldByName('classify').AsString='维修' then
classify.ItemIndex:=8;
if FieldByName('classify').AsString='厨房' then
classify.ItemIndex:=9;
if FieldByName('classify').AsString='运输报关' then
classify.ItemIndex:=10;
if FieldByName('classify').AsString='运输费' then
classify.ItemIndex:=11;
if FieldByName('classify').AsString='车辆费' then
classify.ItemIndex:=12;
if FieldByName('classify').AsString='应酬/接待' then
classify.ItemIndex:=13;
if FieldByName('classify').AsString='福利费' then
classify.ItemIndex:=14;
if FieldByName('classify').AsString='差旅费' then
classify.ItemIndex:=15;
if FieldByName('classify').AsString='额外支出' then
classify.ItemIndex:=16;
if FieldByName('classify').AsString='其他' then
classify.ItemIndex:=17;
end; 展开
2个回答
展开全部
基本没办法简化,因为你的判断条件太多了都不同,你上面代码要进行17次if比对.建议用if ..else ..嵌套提升程序运行效率,delphi7 swtich 不支持中文名对比,高版本没用过。如果要优化,建议把索引存入数据库,而不是对比中文,或动态生成下拉内容
偷懒点办法,就是把新数据直接添加进控件中,并selectindex
偷懒点办法,就是把新数据直接添加进控件中,并selectindex
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
意法半导体(中国)投资有限公司
2023-06-12 广告
2023-06-12 广告
单片机,即单片微控制器,也称为单片微型计算机,是将中央处理器(CPU)、存储器(ROM,RAM)、输入/输出接口和其他功能部件集成在一块 在一个小块的集成电路上,从而实现对整个电路或系统的数字式控制。单片机不是完成某一个逻辑功能的芯片,而是...
点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询