VFP怎么在表格中显示出来查找的信息
好想死啊怎么写都不对x=thisform.text1.valuey=thisform.text2.valuethisform.tag="sele*fromstd_cjwh...
好想死啊 怎么写都不对
x=thisform.text1.value
y=thisform.text2.value
thisform.tag="sele * from std_cj where 总成绩 between x and y"
thisform.grid1.recordsource=thisform.tag
thisform.grid1.refresh
这样为什么不对呢?
求大侠指教 展开
x=thisform.text1.value
y=thisform.text2.value
thisform.tag="sele * from std_cj where 总成绩 between x and y"
thisform.grid1.recordsource=thisform.tag
thisform.grid1.refresh
这样为什么不对呢?
求大侠指教 展开
3个回答
展开全部
*“查找”按钮的click代码:
x=allt(thisform.text1.value)
y=allt(thisform.text2.value)
thisform.grid1.columncount=3 && 表格设置3列
thisform.grid1.column1.header1.caption="标题1"
thisform.grid1.column2.header1.caption="标题2"
thisform.grid1.column3.header1.caption="标题3"
thisform.grid1.column1.width=175 &&列宽175
thisform.grid1.column2.width=64
thisform.grid1.column3.width=56
thisform.grid1.recordsource="sele * from std_cj where 总成绩 between x and y"
thisform.grid1.recordsourcetype=1
thisform.grid1.column1.controlsource="与标题1对应的实际字段名称"
thisform.grid1.column2.controlsource="与标题2对应的实际字段名称"
thisform.grid1.column3.controlsource="与标题3对应的实际字段名称"
thisform.grid1.refresh
x=allt(thisform.text1.value)
y=allt(thisform.text2.value)
thisform.grid1.columncount=3 && 表格设置3列
thisform.grid1.column1.header1.caption="标题1"
thisform.grid1.column2.header1.caption="标题2"
thisform.grid1.column3.header1.caption="标题3"
thisform.grid1.column1.width=175 &&列宽175
thisform.grid1.column2.width=64
thisform.grid1.column3.width=56
thisform.grid1.recordsource="sele * from std_cj where 总成绩 between x and y"
thisform.grid1.recordsourcetype=1
thisform.grid1.column1.controlsource="与标题1对应的实际字段名称"
thisform.grid1.column2.controlsource="与标题2对应的实际字段名称"
thisform.grid1.column3.controlsource="与标题3对应的实际字段名称"
thisform.grid1.refresh
追问
你好 谢谢 打了这么多代码 我看了一下 影响大局的好像就是除去了空格 但是我试过了还是运行的时候表格没东西 题目是要求在表格显示 成绩在你输入的那两个数之间 (也就是XY)的学生的全部信息 所以不知你设置的三列表是什么意思啊?
追答
三列表是什么意思啊?
标题1、2、3是想在表格中显示的列标题,与数据表对应;
"与标题1对应的实际字段名称"必须与数据表中要显示的字段名一致,也就是你想要在表格中显示哪几个字段,就设置几个,4个、10个都行。
通过这样逐一设置表格列宽、列名称的方法,可以使表格显示的内容规范化。
运行的时候表格没东西——那是你没有按我上面的代码设置。
当然,你一定要按照你的做法,也可以:
x=allt(thisform.text1.value) &&加allt是为了避免输入的数据头尾有空格
y=allt(thisform.text2.value)
sele * from std_cj where 总成绩 between x and y into cursor tmp
thisform.grid1.recordsource="tmp"
thisform.grid1.refresh
(你试试,有问题再说。)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
x=thisform.text1.value
y=thisform.text2.value
thisform.grid1.recordsourcetype=4
thisform.recordsource="sele * from std_cj where 总成绩 between x and y"
thisform.grid1.refresh
y=thisform.text2.value
thisform.grid1.recordsourcetype=4
thisform.recordsource="sele * from std_cj where 总成绩 between x and y"
thisform.grid1.refresh
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询