home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / nicol / sti_calc / sti_cald.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1980-01-01  |  816 b   |  17 lines

  1. program STI_CalcD;                          { demonstration of STI_CALC     }
  2.  
  3. uses
  4.    STI_CALC,                                { the calculator unit           }
  5.    Crt;                                     { standard CRT unit             }
  6.  
  7. {---------------------------------------------------------------------------}
  8.  
  9. begin
  10.   STI_Calculator(10,10,60,20,               { screen coordinates            }
  11.                 White,                      { text color                    }
  12.                 Green,                      { border color                  }
  13.                 White+Reverse,              { title color                   }
  14.                 5,                          { number of decimals            }
  15.                 5);                         { # of point (real:D:E)         }
  16. end.
  17.