如何到达子表单中的最后一条记录

如何到达子表单中的最后一条记录

本文介绍了如何到达子表单中的最后一条记录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 晚上好, 这是我的问题: 我有一个包含子表单的表单。它们是相互关联的。 当我打开表单时,我希望子表单达到最后的 记录。 我尝试了方法docmd.gotorecord aclast但我没有 成功。 感谢您的帮助。 - _________________________________ 网站照片人员: http://perso.wanadoo.fr/photodim 解决方案 只要坚持将一条记录放在子表单中 - voilla :-) 主要形式: Private Sub Form_Current() Dim rs As Recordset 设置rs = MySubForm.Form.RecordsetClone 如果rs.RecordCount那么 rs.MoveLast MySubForm.Form.Bookmark = rs.Bookmark 结束如果 rs.Close 设置rs =无 结束次级 - A) bort,R)etry,I)用大锤子冲击。 (用trevor代替sithlord发送电子邮件) Good evening to allHere is my problem :I have a form with a subform. They are linked.When I open the form I would like the subform to reach its lastrecord.I tried the method docmd.gotorecord aclast but i did notsucceed.Thank you for your help.--_________________________________Site photo personnel : http://perso.wanadoo.fr/photodim 解决方案Just stick to putting one record in the subform - voilla :-)In the main form:Private Sub Form_Current()Dim rs As RecordsetSet rs = MySubForm.Form.RecordsetCloneIf rs.RecordCount Thenrs.MoveLastMySubForm.Form.Bookmark = rs.BookmarkEnd Ifrs.CloseSet rs = NothingEnd Sub--A)bort, R)etry, I)nfluence with large hammer.(replace sithlord with trevor for email) 这篇关于如何到达子表单中的最后一条记录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-01 13:34