home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / msysjour / vol04 / 02b / project / proj.lod < prev    next >
Text File  |  1988-11-22  |  2KB  |  68 lines

  1. /* Proj.lod  --load the Project manager files 
  2.   
  3.    Make sure you have enough memory to load this application.  
  4.    Your WIN.INI file should contain the following settings:
  5.         [Actor]
  6.         Static=130
  7.         Dynamic=30
  8.    
  9.    To load this file in the workspace type
  10.    
  11.         load("proj.lod");
  12.         load();
  13.         
  14.    This will load all of the classes for the project manager application.
  15.    If you don't have Language Extensions, delete the first five files
  16.    below.  You will not be able to use the fileSave and fileOpen methods
  17.    for ProjWindow, but, everything else should work fine.
  18. */
  19.  
  20. Actor[#ProjWindow] := nil;                /* avoid "undefined" dialog box */
  21. !!
  22.  
  23. LoadFiles := tuple(
  24.                "classes\orderedd.cls",    /* From Language Extensions I */
  25.                "act\literals.act" ,       /* Object storage facility */
  26.                "classes\structou.cls" , 
  27.                "classes\storedob.cls" ,
  28.                "act\objstore.act",
  29.  
  30.                "act\printer.act",        /* Mark Solinski's printer stuff */
  31.                "classes\printer.cls",
  32.                "classes\textprin.cls",
  33.                
  34.                "classes\date.cls",        /* Adam Rauch's Date stuff */
  35.                "act\date.act",
  36.  
  37.                "proj.h",                  /* constants */
  38.                "act\proj.act",            /* misc. methods */
  39.       
  40.                "classes\ActivDia.cls",    /* dialog classes */
  41.                "classes\MStoneDi.cls",
  42.                "classes\TaskDial.cls",
  43.                "classes\PERTDial.cls",
  44.                "classes\PWSetDia.cls",
  45.                "classes\ProjDial.cls",
  46.                "classes\resdialo.cls",
  47.  
  48.                "classes\Node.cls",        /* other project classes */
  49.                "classes\Activity.cls",
  50.                "classes\Mileston.cls",
  51.                "classes\Task.cls",
  52.                "classes\PERTTask.cls",
  53.                "classes\resource.cls",
  54.                "classes\Network.cls",     
  55.                "classes\Project.cls",
  56.                
  57.                "classes\Ganttwin.cls",    /* window classes */
  58.                "classes\ProjWind.cls",
  59.  
  60.                {setName(VImage,"proj.ima");
  61.                 printLine("Image is PROJ.IMA");
  62.                 printLine("cleaning up...");
  63.                 cleanup();
  64.                 snapshot(TheApp);}
  65.               );
  66. !!
  67.  
  68.