[attach]4394[/attach]作者: goodidea 时间: 2004-4-24 03:42
大致如下: (网吧里面没有access,请原谅没有调试)
private sub cmd编辑出入明细_click()
me.chd明细.allowedit = true
me.chd明细.allowappend = true
dim rst as dao.recordset
set rst = me.chd明细.forms.recordset
rst.movelast
me.chd明细.forms.recordset.bookmark = rst.bookmark
end sub
private sub chd明细_lostfocuse()
me.chd明细.allowedit = false
end sub
我试了YoDong朋友的方法,能通过,还有两个问题:
1。当我点下“编辑出入明细”按钮时,光标在新增记录的日期字段内闪烁等待编辑。
2。当子表单失去焦点后禁止编辑。这一点我试了goodidea朋友的方法,但没成功。
请指教,谢谢!作者: Roadbeg 时间: 2004-4-24 17:33
在主窗体写一个方法:
publiuc sub SetSubFrmAllowEdit(Value as boolean)
me.子窗体名.allowedits=value
end sub