Hello,
You can add code in the CreateButton event to hide the buttons if you do not want them to display.
Protected Sub FpSpread1_CreateButton(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateButtonEventArgs) Handles FpSpread1.CreateButton
If e.Label = "<<" Or e.Label = ">>" And FpSpread1.ActiveSheetView.NonEmptyRowCount <= FpSpread1.ActiveSheetView.PageSize Then
e.Visible = False
End If
End Sub
Scott S.
Product Manager, Spread ASP.NET
GrapeCity FarPoint