I meant form - no idea why I wrote report - I've corrected it now
As you realise, scroll bars only appear when a control has focus
Can you add code to reset the focus back to the 'sub-container' after entering the data?
Assuming the focus is in the form (or subform) containing your 'sub-container'
Code:
Me.SubFormName.SetFocus
or if it's a textbox in the subform
Code:
Me.SubFormName.Form.TextboxName.SetFocus
If its in another subform, then you'll need more complex code .
Something like:
Code:
Parent.SubFormName.Form.TextboxName.SetFocus
See this link for more info http://allenbrowne.com/casu-04.html
Also this thread may have something useful - similar idea in some ways:
https://www.access-programmers.co.uk...+without+focus
Good luck
I'm signing out now.