|
本帖最后由 laomao 于 2009-1-30 22:29 编辑
步骤如下:
1.dim rs as new adodb.recordset
rs.cursorlocation=aduseclient
rs.open strsql,locktype:=adlockbatchoptimistic
set rs.activeconnection=nothing
set me.recordset=rs
2.问题出在这步,我尝试了两种方法都不行
①直接在窗体上编辑
②在控件(field1)的click事件中:
me.recordset![field1]=某值
me.recordset![field1].update
3.me.recordset.activeconnection=currentproject.connection
me.recordset.updatebatch
现在的问题是:如果我用①的方法则updatebatch不起作用,什么也没保存;如果用②的方法倒是保存成功了,但窗体控件的内容不变,直到使用updatebatch后才显示.不知道问题出在哪? |
|