有关“查询”代码的问题
数据库表中有发票起号和发票止号两项,输入中间号码查询信息,以下是我写的“查询”click代码,但执行以后查不出来,麻烦大侠们帮忙修改一下,谢谢t1=alltrim(thisform.text1.value)
t1=val(t1)
loca for t1>=val(发票起号) and t1<=val(发票止号)
if found()
sele * from 发票信息 where t1>=val(发票起号) and t1<=val(发票止号) into cursor "temp"
thisform.grid1.recordsource="temp"
else
messagebox("未找到相关记录!",64,"提示")
endif