I have a form that also contains a subform. The main form takes up about 1/4 - 1/3 of the window. The subform is a continuous form and takes up the remainder of the window plus continues past the bottom of the window. I have two vertical scroll bars - one for each window.
First, as we enter data into the subform and it grows, the new fields go below the window; it doesn't scroll up so that we can see the fields. I have to manually pull down the scroll bar of the main form and the subform to see the new fields. Is there a way around this?
Secondly, when we finish entering the data and want to start a new record, we click the right arrow next to the outer Record (associated with the main form) and the cursor lands on the first record of the subform. I would like for it to go to the first field in the main form. I have tried to SetFocus on the field in both the Form_Open and Form_Load events with the:
TIA!
First, as we enter data into the subform and it grows, the new fields go below the window; it doesn't scroll up so that we can see the fields. I have to manually pull down the scroll bar of the main form and the subform to see the new fields. Is there a way around this?
Secondly, when we finish entering the data and want to start a new record, we click the right arrow next to the outer Record (associated with the main form) and the cursor lands on the first record of the subform. I would like for it to go to the first field in the main form. I have tried to SetFocus on the field in both the Form_Open and Form_Load events with the:
Me.sDate.SetFocus
statement and that doesn't work. Am I putting it in the wrong place? Is it the wrong command? Or is this just something I am going to have to live with?
TIA!