DataMuseum.dk

Presents historical artifacts from the history of:

RegneCentralen RC759 "Piccoline"

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

See our Wiki for more about RegneCentralen RC759 "Piccoline"

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦96edac2fd⟧ TextFile

    Length: 848 (0x350)
    Types: TextFile
    Names: »FIGUR3.PAS«

Derivation

└─⟦d4ddf50a0⟧ Bits:30004478 CPI-graf 2.5 til Piccoline/Partner
    └─⟦this⟧ »FIGUR3.PAS« 

TextFile

PROGRAM figur3;
uses cpigraf;
VAR
  vindue        :Wnd_Id;

  PROCEDURE skrivnoget;
  VAR i: INTEGER;
  BEGIN
    selectviewport(vindue);
    FOR i:=0 TO 8 DO WriteText(0,i,'Grafik- og tekstvindue');
  END;

BEGIN
  GraphicScreen(IBM_high);

(*-----------------------------------------------------------------------------
Definition af et vindue som best▶86◀r af linier i grafik og teksttilstand
-----------------------------------------------------------------------------*)
  NewTextViewport(vindue,20,45,8,18);
  SetViewportHeader(vindue,'Vindue');
  setpalette(2,redtxt+lighttxt,bluetxt);
  settextviewportcolor(vindue,2);
  setviewporttype(vindue,(.wwriteframe,WNONHIDE.));

  GraphMode;
  skrivnoget;
  ReadChar;
  HideViewport(vindue);
  
  TextMode;
  skrivnoget;
  ReadChar;
  CloseViewport(vindue);
END.
  «eof»