我在按钮中用如下代码添加记录:
sele main
go bottom
lsllr=alltrim(thisform.txtllr.value)
lslb=alltrim(thisform.combo1.value)
lsrq=alltrim(thisform.rq.value)
INSERT into main(llr,lb,rq) values(lsllr,lslb,lsrq)
thisform.txtllr.value=''
thisform.combo1.value=''
thisform.rq.value=''
thisform.refresh
thisform.txtllr.setfocus
每次运行添加记录的表单输入记录后,在main中总会多出一行空记录,请问怎么解决?