philbullock1223
Registered User.
- Local time
- Today, 16:03
- Joined
- Dec 31, 2011
- Messages
- 55
At a point within my code I need to requery a subform. When I do-so, the subform jumps to the top record. I have tried the below code to remedy the problem, but can't seem to figure out why it doesn't work.
There is no error. The focused record litteraly jumps around to seeminly random records. The subform is based on an SQL query that has an OrderBy statement that could be giving it issue, but I don't know.
I can't figure it out. Any help would be greatly appreciated.
Phil
Code:
ID = Forms![MainForm]![Subform]![ID] 'Get the ID the subform is currently on
Forms![MainForm]![Subform].Requery 'Requery the subform
Forms![MainForm]![Subform].SetFocus 'SetFocus to the subform
DoCmd.FindRecord ID 'Go to the record I was previously on
There is no error. The focused record litteraly jumps around to seeminly random records. The subform is based on an SQL query that has an OrderBy statement that could be giving it issue, but I don't know.
I can't figure it out. Any help would be greatly appreciated.
Phil