DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: B T

⟦8b562c80e⟧ TextFile

    Length: 2049 (0x801)
    Types: TextFile
    Names: »B«

Derivation

└─⟦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⟧ 

TextFile

separate (Vt100)



function Print_Global_Menu return Integer is
    ----------------------------------------------------------------------
    --|
    --|  NAME:  PRINT_GLOBAL_MENU
    --|
    --|  OVERVIEW:
    --|    This procedure displays the global variables that can be manipulated.
    --|
    --|  EXCEPTIONS HANDLED:
    --|    others   the user is reprompted
    --|
    --|  HISTORY:
    --|    written by   May Lee   March 1985
    --|
    ----------------------------------------------------------------------
begin
    loop
        begin
            Clear_Screen;
            Put_Line ("                    GLOBAL  DATA  MENU  ");
            Put_Line
               ("=======================================================");
            New_Line (3);
            Put_Line ("Choose the number of one of the following global ");
            Put_Line ("variables that you would like to modify: ");
            New_Line (2);
            Put (" 1)  Project Name            ");
            Put (Project_Name);
            New_Line;
            Put (" 2)  Project Number          ");
            Put (Project_Number, 3);
            New_Line;
            Put (" 3)  Project Manager's Name  ");
            Put (Manager_Name);
            New_Line;
            Put (" 4)  Date the TRACKER Run is Valid for  ");

            if Date = Null_Date then
                Put (" null date ");
            else
                Put (Date.Month, 2);
                Put ("/");
                Put (Date.Day, 2);
                Put ("/");
                Put (Date.Year, 4);
            end if;

            New_Line (2);
            Put_Line (" 5)  Done With Data - EXIT from Global Data 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_Global_Menu;