皮皮网

皮皮网

【李炎恢php第一季源码】【pc资金盘源码】【仿QQ主页源码】delphi 物料源码

时间:2024-11-26 22:22:14 分类:时尚

1.DELPHI combobox如何与DBGRID的结合
2.DELphi 如何组合字符串
3.Delphi DBCombobox如何获取选项文本

delphi 物料源码

DELPHI combobox如何与DBGRID的结合

       å…ˆæŠŠä»£ç å†™åœ¨combobox1的onchange事件里

       Query.close;

       Query.sql.text:=ConCat('select * from 备件 where 物料号 like ',物料李炎恢php第一季源码#,'%',combobox1.text,'%',#,' and 名称 like ',#,'%',combobox2.text,'%',#);

       if dtpTime.text<>'' then

       Query.sql.text:=ConCat(Query.sql.text,' and 日期=',#,dtpTime.text,#);

       Query.open;

DELphi 如何组合字符串

       WLBH := StringOfChar('0', 4 - Length(WLLB)) + WLLB + StringOfChar('0', 4 - Length(WLPP)) + WLPP + StringOfChar('0', 4 - Length(WLGG)) + WLGG;

Delphi DBCombobox如何获取选项文本

       先把代码写在combobox1的onchange事件里

       Query.close;

       Query.sql.text:=ConCat('select * from 备件 where 物料号 like ',#,'%',combobox1.text,'%',#,' and 名称 like ',#,'%',combobox2.text,'%',#);

       if dtpTime.text<>'' then

       Query.sql.text:=ConCat(Query.sql.text,' and 日期=',#,dtpTime.text,#);

       Query.open;