I use this SQL code to implement the pagination with Access
Select TOP Row_Per_Page * From [ Select TOP (TotRows - ((Page_Number - 1) * Row_Per_Page) From SampleTable Order By ColumnName DESC ] Order By ColumnName ASC
I've published an article with some screenshots
on my blog