Installing Begin- and End-Row Scrollable Region Functions

Designer: You can attach begin- and end-row scrollable region functions to your forms in the Designer, by selecting Modify->Scrollable region->User functions and entering the name of the function to attach.

Code: To install a begin-row function, use ssr_begrowfp():

void ssr_begrowfp(begrow_fp, srp)
 
int (*begrow_fp)();
/* Function to install
*/
SRPTR srp;
/* Scrollable region
*/

To install an end-row function, use ssr_endrowfp():

void ssr_endrowfp(endrow_fp, srp)
 
int (*endrow_fp)();
/* Function to install
*/
SRPTR srp;
/* Scrollable region
*/


Home Contents Previous Next