home *** CD-ROM | disk | FTP | other *** search
- <<* EDITPAGE.INC *>>
-
- <<procedure EditLitePage>>
- <<* 1 2 3 4 5
- 01234567890123456789012345678901234567890123456789012345
- EDIT/VIEW: Edit Find Goto Locate <Delete> Turn-page
- Next-record Prev-record Select <Return>
- *>>
- <<begin>>
- <<if ismultials>>
- @ row,0 SAY "EDIT/VIEW:"
- @ row,12 PROMPT "Edit"
- @ row,19 PROMPT "Find"
- @ row,26 PROMPT "Goto"
- @ row,33 PROMPT "Locate"
- @ row,42 SAY "<Delete>"
- @ row,43 PROMPT "Delete"
- @ row,53 PROMPT "Turn-page"
- @ row+1,12 PROMPT "Next-record"
- @ row+1,26 PROMPT "Prev-record"
- @ row+1,40 PROMPT "Select"
- @ row+1,49 SAY "<Return>"
- @ row+1,50 PROMPT "Return"
- MENU TO menuchoice
- editchoice = SUBSTR( Returnkey+"EFGL"+DelRecord+;
- PgDn+"NPS"+Returnkey,menuchoice+1,1 )
- <<else>>
- @ row,0 SAY "EDIT/VIEW:"
- @ row,12 PROMPT "Edit"
- @ row,19 PROMPT "Find"
- @ row,26 PROMPT "Goto"
- @ row,33 PROMPT "Locate"
- @ row,42 SAY "<Delete>"
- @ row,43 PROMPT "Delete"
- @ row,52 PROMPT "Turn-page"
- @ row+1,12 PROMPT "Next-record"
- @ row+1,26 PROMPT "Previous-record"
- @ row+1,44 SAY "<Return>"
- @ row+1,45 PROMPT "Return"
- MENU TO menuchoice
- editchoice = SUBSTR( Returnkey+"EFGL"+DelRecord+;
- PgDn+"NP"+Returnkey,menuchoice+1,1 )
- <<endif>>
- <<end EditLitePage>>
-
-
- <<#
- procedure EditPage
- <<if LiteBar or Bracketed>>
- <<if ismultials>>
- @ row+1,12 SAY "{N}ext-record {P}rev-record {S}elect <Return>"
- @ row,0 SAY;
- "EDIT/VIEW: {E}dit {F}ind {G}oto {L}ocate <Del> <PgDn> <PgUp> "
- <<else>>
- @ row+1,12 SAY "{N}ext-record {P}revious-record <Del> <Return>"
- @ row,0 SAY "EDIT/VIEW: {E}dit {F}ind {G}oto {L}ocate <PgDn> <PgUp> "
- <<endif>>
- <<endif>>
- if ismultials>>
- DO GetKey WITH editchoice,"EFGLNPS"+DelRecord+PgDn+PgUp+Returnkey
- <<else>>
- DO GetKey WITH editchoice,"EFGLNP"+DelRecord+PgDn+PgUp+Returnkey
- <<endif>>
- end EditPage
- #>>
-
- <<* EOF: EDITPAGE.INC *>>