|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1660 (0x67c)
Types: TextFile
Names: »B«
└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
└─⟦5cb1d1d7f⟧ »DATA«
└─⟦3b1ee7bd8⟧
└─⟦this⟧
separate (Vt100)
function Print_Operation_Menu return Integer is
----------------------------------------------------------------------
--|
--| NAME: PRINT_OPERATION_MENU
--|
--| OVERVIEW:
--| This procedure displays the operations that can be performed on
--| a data type.
--|
--| EXCEPTIONS HANDLED:
--| others the user is reprompted
--|
--| HISTORY:
--| written by May Lee March 1985
--|
----------------------------------------------------------------------
begin
loop
begin
Clear_Screen;
Put_Line (" OPERATIONS MENU ");
Put_Line
("=======================================================");
New_Line (3);
Put_Line ("Choose the number of one of the following operations ");
Put_Line ("that you would like to perform: ");
New_Line (2);
Put_Line (" 1) Add ");
Put_Line (" 2) Delete ");
Put_Line (" 3) Modify ");
Put_Line (" 4) Display the Current Data");
New_Line;
Put_Line
(" 5) Done With Data - EXIT from Operations Menu");
Get (Response);
Skip_Line;
New_Line (2);
return Response;
exception
when others =>
Skip_Line;
New_Line;
Put_Line (" Please enter a number between 1 and 5. ");
delay 1.0;
end;
end loop;
end Print_Operation_Menu;