Modernize your PowerBuilder Applications

Pagination

This new control allows you to add pagination with a flat design to your PowerBuilder applications.

With Ultimate Suite, the PowerBuilder developers can set the total number of pages, the start page, and the font size per their requirements.

Use the Pagination control and split a large dataset into appropriate page sizes to:

  • Gradually display information that can be absorbed in one go.
  • Reduce the load on the database.

Pagination Control


Implementation

//Place u_cst_pagination from advguicontrols.pbl\pbd on your window or visual user object.
//Open Event or Constructor Event: 
      
uo_pagination.of_SetTotalPages(30) 
uo_pagination.of_SetCurrentPage(1)
uo_pagination.of_SetFontSize(12)