Referencing a Page Break on Form

bconner

Registered User.
Local time
Yesterday, 18:05
Joined
Dec 22, 2008
Messages
183
I have an Access Form that I am using to run all of my reports from. Basically if a user selects a report name from a list on another form, I would like for the report from to open up and the focus to move down to the section on the form that contains the input boxes for that particular report. Any help is greatly appreciated.
 
pick a control at the beginning of the relevent section and use either code or a macro using the SetFocus property

e.g. with code:
[Reports]![rptComprehensiveReport]![txtTextBoxInReleventSection].setfocus

Change the control you wish to set focus upon based upon the report name that the user clicks upon.
________
Marijuana Strain Strawberry Cough
 
Last edited:

Users who are viewing this thread

Back
Top Bottom