Scrolbar of the continous form is always full (1 Viewer)

amir0914

Registered User.
Local time
Yesterday, 19:13
Joined
May 21, 2018
Messages
151
Hi all,
I'm using a continous subform on the main form and the scrolbar of the subform is full while there are some records (15 records) in it :

Screenshot (2521).png

Of course, the problem is solved after changing the scroll bar manually, it is just annoying on load of the form.
Can someone tell me how I can resolve this problem ?
 

CJ_London

Super Moderator
Staff member
Local time
Today, 02:13
Joined
Feb 19, 2013
Messages
16,553
From the look of your image, the subform control needs to taller
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 10:13
Joined
May 7, 2009
Messages
19,169
add code the the Subform's Load event:
Code:
Private Sub Form_Load()
    With DoCmd
        .GoToRecord , , acLast
        .GoToRecord , , acFirst
    End With
End Sub
 

Users who are viewing this thread

Top Bottom