View previous topic :: View next topic
|
Author |
Message |
ashimer
Active Member
Joined: 13 Feb 2004 Posts: 551 Location: Bangalore
|
|
|
|
is it possible to implement page up and page down?
if yes ..how do i do tht ...
ashish |
|
Back to top |
|
|
Kevin
Active User
Joined: 25 Aug 2005 Posts: 234
|
|
|
|
Use a panel definition with a scrollable area:
Code: |
)Attr Default(%+_)
# Type(Text) Intens(High)
@ Area(Scrl) Extend(On)
)Body Expand(//) Width(80)
%/-/ My Test Panel /-/+
#Command ===>_ZCMD +
+
#/ / This direction line tells the user how to use the panel. / /+
+
@area1 @
+
#/ / Optional bottom directional line. / /+
+
)Area area1
+Normal text line 1.+
...
+Normal text line 30.+
)Init
)Reinit
)Proc
)Help
)End
|
|
|
Back to top |
|
|
|