How to tell if a frame scrollbar has reached the bottom

bradyboyy88

Well-known Member
Joined
Feb 25, 2015
Messages
562
Hi,

I want to add an event to my frame so that when the scroll reaches the bottom it triggers a event. However, I cant seem to figure out a way to tell if it hit the bottom. My code below doesnt work for either method:

Code:
Private Sub Frame1_Scroll(ByVal ActionX As MSForms.fmScrollAction, ByVal ActionY As MSForms.fmScrollAction, ByVal RequestDx As Single, ByVal RequestDy As Single, ByVal ActualDx As MSForms.ReturnSingle, ByVal ActualDy As MSForms.ReturnSingle)

If Frame1.ScrollHeight = Frame1.ScrollTop Then MsgBox "bottom"
If ActionX = fmScrollActionEnd Then MsgBox "bottom"

End Sub
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
this will kind of do it. But you will have to fiddle around as to not get repeat ( i tried to achieve that with the flag)
It also does not seem to work if you drag the scroll bar, only if you use the down botton

VBA Code:
Dim mbHitBottom As Boolean

Private Sub Frame1_Scroll(ByVal ActionX As MSForms.fmScrollAction, ByVal ActionY As MSForms.fmScrollAction, ByVal RequestDx As Single, ByVal RequestDy As Single, ByVal ActualDx As MSForms.ReturnSingle, ByVal ActualDy As MSForms.ReturnSingle)
    
    With Frame1
        If .ScrollHeight <= .InsideHeight + .ScrollTop + 2 And mbHitBottom = False Then
            MsgBox "bottom"
            mbHitBottom = True
        Else
            mbHitBottom = False
        End If
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,193
Messages
6,123,560
Members
449,108
Latest member
rache47

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top