home *** CD-ROM | disk | FTP | other *** search
- /* this startsup the phonebook */
-
- WINDOW 0 0 695 130
-
- OV 1
- MENU Clear
- MENU 0 "Q" "QUIT" '"QUIT 1;exit"'
- MENU 1 "A" '"Add entry "' '"PhoneBook/addentry.txed"'
- MENU 1 "C" '"Change entry "' '"PhoneBook/changeentry.txed"'
- MENU 1 "D" '"Delete entry "' '"PhoneBook/deleteentry.txed"'
- MENU 1 "L" '"Phone Listings"' '"PhoneBook/listphoneentries.txed"'
- MENU 1 "S" '"Dial Host"' '"PhoneBook/dialvlt.txed"'
-
- MACRO "+N" "'OPTIONS RESULTS;STATUS R;parse var result "row" x rest;if x<12 then do;down;sol;right 9;end;else JUMP 1 9'"
-
-
- fill = copies('20'x,71)||'0a'x
- text = " Name:"||fill
- text = text||" Address:"||fill
- text = text||" :"||fill
- text = text||" :"||fill
- text = text||" :"||fill
- text = text||" Phone:"||fill
- text = text||" Notes:"||fill
- text = text||" :"||fill
- text = text||" :"||fill
- text = text||" :"||fill
- text = text||" :"||fill
- text = text||" Dial:"||fill
- INSERT '"'||text||'"'
- TOP
- JUMP 1 9
-
- exit
-