home *** CD-ROM | disk | FTP | other *** search
- /* this is PhoneBook/names.rexx */
- parse upper arg x d
-
- if x = "ASSIGN" then do
- askphone = "YES"
-
- intest = 0
-
- do i = 1
- parse pull inline
- if inline = "" then intest = intest + 1
- if intest = 3 then leave i
- parse var inline name rest
- if name = "phonebook" then askphone = "NO"
- end
-
- if askphone = "YES" then do
- y = request(100,100,"Type name of the directory to which I should assign PHONEBOOK:","vd0:",)
- address command "assign PHONEBOOK: "y
- end
-
- end
-
- 'e startup "PhoneBook/startphone"'
-
-
-