请教关于grid控件的一个问题
表里共有5个字段,grid控件关联了其中的4个,下面是增加新记录的语句,直接用不会出错,但是在我用了查询语句之后再用增加功能,grid控件就把5个字段全显示出来了,不知道哪儿出问题了。查询程序在后面,请高人帮忙看看!添加记录:
IF EMPTY(thisform.商家名.Text)
MESSAGEBOX("商家名不能为空",48)
ELSE
GO bottom
APPEND BLANK
replace 品牌商家.商家名 WITH thisform.商家名.Value
replace 品牌商家.业态 WITH thisform.业态.Text
replace 品牌商家.业种 WITH thisform.业种.Value
replace 品牌商家.星级 WITH thisform.星级.Value
replace 品牌商家.选址要求 WITH thisform.商家选址.Value
thisform.商家列表.recordsource=Null
thisform.商家列表.recordsource='品牌商家'
ENDIF
查询:
thisform.商家列表.RecordSource=''
select * from 品牌商家 where 商家名==thisform.商家名查询.Value into cursor 临时表
thisform.商家列表.recordsource='临时表'
thisform.Refresh