求教vfp表单中,按钮控制表格grid显示的问题
表单中有一个list1,command1,grid1,数据库中有个表ordern(orderid,orderuid,tablenum...)目的是点击command1,g...
表单中有一个list1,command1,grid1,数据库中有个表ordern(orderid,orderuid,tablenum...)目的是点击command1,grid 1显示指定内容。
list的refresh:(列举显示所有ordern表中orderid字段内容)
SELECT orderid from ordern into cursor temp
thisform.list1.RowSourceType=2
thisform.list1.RowSource='temp'
command1的click:(让grid中显示list中对应orderid的其他字段信息)
thisform.grid1.recordsource=" ;
select orderuid,tablenum,orderphone,ordertime from ordern where orderid=alltrim(thisform.grid1.value);
into cursor temp1"
现在表格grid里什么都不显示,求解。好像是click获取list中的值得时候出了问题?我是菜鸟,只学过一些C语言,上面都是网上找的代码,求大神指点迷津
或者不要command1,做成级联的效果,在list中选中一个值就在grid中显示对应的其他字段的信息 展开
list的refresh:(列举显示所有ordern表中orderid字段内容)
SELECT orderid from ordern into cursor temp
thisform.list1.RowSourceType=2
thisform.list1.RowSource='temp'
command1的click:(让grid中显示list中对应orderid的其他字段信息)
thisform.grid1.recordsource=" ;
select orderuid,tablenum,orderphone,ordertime from ordern where orderid=alltrim(thisform.grid1.value);
into cursor temp1"
现在表格grid里什么都不显示,求解。好像是click获取list中的值得时候出了问题?我是菜鸟,只学过一些C语言,上面都是网上找的代码,求大神指点迷津
或者不要command1,做成级联的效果,在list中选中一个值就在grid中显示对应的其他字段的信息 展开
1个回答
展开全部
你可能描述的有问题。
正确的应该是:在list1中做出选择,点击command1,在grid1的显示查询的结果。
command1.click()
select orderuid,tablenum,orderphone,ordertime ;
from ordern where orderid=alltrim(thisform.list1.value);
into cursor temp1
thisform.grid1.recordsource="temp1"
thisform.grid1.refresh()
正确的应该是:在list1中做出选择,点击command1,在grid1的显示查询的结果。
command1.click()
select orderuid,tablenum,orderphone,ordertime ;
from ordern where orderid=alltrim(thisform.list1.value);
into cursor temp1
thisform.grid1.recordsource="temp1"
thisform.grid1.refresh()
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询