我试图弄清楚为什么一个子表单 Requery 在 Access 2010/2007 中没有显示更改的记录(或新的或删除的),当它在 2003 年工作时?
如果我关闭/重新打开表单,这些值是正确的,但直到那时才正确?2007/2010 年有什么变化需要额外的步骤吗?
这是多个表单使用的子表单 - 我不会尝试根据主表单上发生的任何事情等来刷新/requrey。SUBform上有一个按钮可以进行此调用以向上移动记录(重新排序行);
该数据库是 SQL Server 2005,如果有任何区别,则不是本地访问。
Private Sub btnUp_Click()
On Error GoTo Error_Handler
Dim blnUpdateSwitch As Boolean
blnUpdateSwitch = False
Dim blnRemoval As Boolean
blnRemoval = False
' Commit any outstanding edits before moving the records.
Me.Refresh
Dim intCurrentRecord As Integer
intCurrentRecord = Me.CurrentRecord
If Me.Recordset!blnSwitch = True Then blnUpdateSwitch = True
If intCurrentRecord >= 2 Then
Me.Recordset.Edit
Me.Recordset!lngSequence = intCurrentRecord - 1
Me.Recordset.Update
Me.Recordset.MovePrevious
Me.Recordset.Edit
Me.Recordset!lngSequence = intCurrentRecord
Me.Recordset.Update
Me.Recordset.Requery
If blnUpdateSwitch Then CalculateSwitchOrder
Me.Recordset.AbsolutePosition = intCurrentRecord - 2
Me.Requery
End If
Exit Sub
Error_Handler:
End Sub