Installing Begin- and End-Scrollable Region Functions

Designer: You can attach begin- and end-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-scrollable region function, call the function ssr_begfp():

void ssr_begfp(beg_fp, srp)
 
int (*beg_fp)();
/* Function to install
*/
SRPTR srp;
/* Scrollable region 
*/

To install an end-scrollable region function, use ssr_endfp():

void ssr_endfp(end_fp, srp)
 
int (*end_fp)();
/* Function to install
*/
SRPTR srp;
/* Scrollable region 
*/


Home Contents Previous Next