home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
d_b_a
/
87_01
/
sorter.sc
< prev
next >
Wrap
Text File
|
1986-12-05
|
692b
|
29 lines
;------------------------------------------ Sorter.SC.
;----------------- Script to display options and sort.
CLEARALL
CLEAR
SHOWMENU
"Alphabetical" : "Alphabetical order by name",
"Zip Code" : "Zip code order for bulk mailing",
"None" : "Don't sort, return to menu"
TO SChoice
;--- Create message about waiting.
IF SChoice <> "None" THEN
Msg = "Sorting the data, please wait"
STYLE REVERSE, BLINK
@ 12,25
?? Msg
ENDIF
; --------- Sort accordingly.
SWITCH
CASE SChoice = "Alphabetical" :
SORT "CustList" ON "Last Name", "First Name"
CASE SChoice = "Zip Code" :
SORT "CustList" ON "Zip", "Last Name"
ENDSWITCH
CLEAR