home *** CD-ROM | disk | FTP | other *** search
- '***********************************************************************
- ' SBars.rlz
- '
- ' Custom Control Sample Program
- '
- ' Copyright ⌐ 1991-1992 Computer Associates International, Inc.
- ' All rights reserved.
- '
- '***********************************************************************
-
- RUN "CCLib1"
-
- PROC formproc(params)
- LOCAL n
-
- SELECT CASE params[_ItemNum]
- CASE 1
- FormModifyObject(20; 50)
- FormSetColor({0.5, 0.5, 0.5})
- CASE 20
- n = FormQNum(20)/100
- FormSetColor({n, n, n})
- END SELECT
- END PROC
-
- FormNew(10; "", _Title + _Size + _Close)
- FormSetObject(1, _DefButton, "Gray", _Left, _Top)
- FormSetObject(20, _ScrollBar, "",_Right, 0 pct, _Default, 100 pct; _SB_Style + _SB_Vertical + _SB_AlignAlone, 100)
- FormSetProc(formproc)
- FormControl(_Show)
-