各位老师,一个表单,一个组合框,两个文本框,组合框是科室名称,在text1输入30,在text2输入40,表中这个科室的30-40岁的数据能查询出来(年龄是数值型)。
sele * from 数据表 where 科室= and 年龄>=thisfomr.text1.value and 年龄<=thisform.text2.value into cursor ls 提示错误
请老师指教。谢谢
请问老师,用这个代码操作,老出现“对象没有包含表单中”,就查询失败,不显示。我去掉科室,单查询年龄段用:
sele * from 数据库 where 年龄>=VAL(thisform.text1.value) and 年龄<=VAL(thisform.text2.value) into cursor ls 哪里有错呢?
各位老师,用sele * from 数据库 where 科室= and 年龄>=VAL(thisform.text1.value) and 年龄<=VAL(thisform.text2.value) into cursor ls 不出现提示,运行正常。去掉科室,用sele * from 数据库 where 年龄>=VAL(thisform.text1.value) and 年龄<=VAL(thisform.text2.value) into cursor ls 就出现“对象没有包含表单中”,程序错误提示。这是怎么回事?我是在查询按钮里设置的代码。 browse 显示查询内容
数据表里的字段:科室是字符型,年龄是数值型,我把gjbzjp老师说的,文本框换成value=0,也出现上述问题。这句代码加where 科室=....就能正常运行,去掉科室就有问题啦。使用发现:是不是和 if 全体"有关呢?这个“全体”不在数据表里。为了表达“全体”就去掉科室这样查询。为什么这样的查询方法,我经常用,查询别的都行,查询年龄就不行了呢?
谢谢各位老师的热情帮助,我用笨办法解决问题啦!运行正常,不再有错误提示。再次谢谢各位老师
sele 数据库
if 全体"
sele * from 数据库 where 科室= and and 年龄>=Val(thisfomr.text1.value) and 年龄<=Val(thisform.text2.value)into cursor ls
else
sele * from 数据库 where 科室= and and 年龄>=Val(thisfomr.text1.value) and 年龄<=Val(thisform.text2.value)into cursor ls
endif