【javaee进销存源码】【cc2510源码】【vol-tdx源码】delphi 物料源码

时间:2024-11-24 23:25:44 来源:liteapp源码 分类:焦点

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 ',物料javaee进销存源码#,'%',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;