I am trying to figure out why a subform Requery is NOT showing changed records (or new or deleted for that matter) in Access 2010/2007, when it worked in 2003 ?
If I close/reopen the form, that values are correct but not until then ? Has something changed in 2007/2010 that requires an additional step?
This is a subform used by multiple forms - and I am NOT trying to refresh/requrey based on anything happening on the main form, etc. There is a button on the SUBform that makes this call to move a record UP (re order the rows);
The database is SQL Server 2005, not local access if that makes any difference ?.
Thank you in advance for helping out a non-Access-expert guy !!!
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
blnUpdateSwitch = False. Use the F9 to set a breakpoint --- you will see a red dot in the left-hand margin and the entire line should also be highlighted in red. Then go back to the form and click the command button. Your code will be in break (debug) mode. Step through the code one line at a time with F8. And see what's happening. – HansUp Jan 22 at 19:34