home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / S12215.ZIP / READPROJ.TXT < prev    next >
Text File  |  1988-11-30  |  7KB  |  191 lines

  1.                          PC-Project README.TXT
  2.  
  3. Introduction
  4. ------------
  5.  
  6. PC-Project is a complete critical path project management application that
  7. runs under Microsoft Windows.  PC-Project is written entirely in Actor,
  8. an object-oriented programming language for Microsoft Windows.  Complete
  9. source code is included.   PC-Project was written as a sample Windows
  10. program and may be freely distributed for non-commercial use.
  11.  
  12. If any files are missing from the version you have or if you'd like to get
  13. the latest version, you can order it directly from the author at the
  14. nominal charge of $5.00 to the U.S. and $10 elsewhere.  The address is
  15. given at the end of this file.
  16.  
  17.  
  18. The files on this disk are:
  19.  READPROJ.TXT   -This "readme" file
  20.  INSTALL.BAT    -Installation program
  21.  ZOO.EXE        -Zoo compression/decompression utility program.
  22.  PROJECT.ZOO    -A compressed file that contains PC-Project program,
  23.                  source code, sample projects and manual.
  24.  
  25. I encourage you to share PC-Project with others.  Please distribute as
  26. is with all of the files.  If you are distributing electronically, please
  27. be sure to send the ZOO.EXE, PROJECT.ZOO and READPROJ.TXT files.
  28.  
  29. The ZOO file also contains the READPROJ.TXT and INSTALL.BAT file for
  30. easy electronic or disk distribution.
  31.  
  32.  
  33. PC-Project Installation:
  34. ------------------------
  35.  
  36. If you received this disk directly from the Whitewater Group, there is
  37. an INSTALL.BAT program on the disk.  To install type:
  38.  
  39.         A: INSTALL A: C: C:\ACTOR
  40.  
  41. If you downloaded this program from a bulletin board system, then follow
  42. these instructions.  You will also need the ZOO.EXE utility which can be
  43. downloaded from most BBS systems.
  44.  
  45. If you don't have Actor, then make 4 subdirectories as shown below:
  46.    MD ACTOR
  47.    CD ACTOR
  48.    MD CLASSES
  49.    MD ACT
  50.    MD RES
  51.  
  52. Then install the application and the source code by typing
  53.    CD ACTOR                      (or wherever Actor is installed)
  54.    ZOO x/ PROJECT.ZOO            (install source into subdirectories)
  55.  
  56. The ZOO command above will install the source code into the appropriate
  57. subdirectories.
  58.  
  59. Zoo is a public domain archiving utility similar to ARC but faster.  Type
  60.    ZOO h
  61. for help.
  62.  
  63.  
  64. Installed files
  65. ---------------
  66.  
  67. During the installation process the following files will be created
  68. on your hard disk.
  69.  
  70.  PMANUAL.TXT   -How to use PC-Project (16 pages of text)
  71.  PDESIGN.TXT   -How PC-Project was designed (11 pages of text)
  72.  PROJECT.EXE   -Executable PC-Project program file
  73.  PROJECT.IMA   -Sealed off image file required to run above
  74.  *.PRJ         -Various test files
  75.  
  76. If you installed the source code, the following files will also be found:
  77.  
  78.  PROJ.LOD      -A "load file" to load the source code if you have Actor
  79.  PROJSEAL.LOD  -A "load file" to seal off the application if you have Actor
  80.  PROJ.H        -Header file of constant definitions
  81.  CLASSES\*.CLS -Source code to the classes that define the application
  82.  ACT\*.ACT     -Miscelaneous Actor source code methods
  83.  RES\*.RC      -Resource script files.
  84.  RES\PROJ.ICO  -Resource icon.
  85.  FIX_LE.ACT    -Fixes to Language Extensions I upto version 1.2
  86.  
  87.  
  88. Printing the documentation
  89. --------------------------
  90.  
  91. To print the documentation type:
  92.  
  93.         COPY PMANUAL.TXT PRN
  94.         COPY PDESIGN.TXT PRN
  95.  
  96.  
  97. Starting PC-Project
  98. -------------------
  99.  
  100. The project manager application requires Microsoft Windows 2.x.  To start
  101. the project manager start Windows and then double click on the PROJECT.EXE
  102. file.  If you have Actor DON'T click on the PROJECT.IMA file since you
  103. won't have the resources to run the application correctly.  Or you can
  104. run directly from the DOS C> prompt by typing
  105.  
  106.         WIN PROJECT.EXE
  107.  
  108. Refer to the Help screens and PMANUAL.TXT for more instructions.  If you'd
  109. like to know more about the design of PC-Project, refer to PDESIGN.TXT.
  110.  
  111.  
  112. NOTES
  113. -----
  114. Version 1.02B 11/30/88
  115.  -Minor changes to the ProjWindow and Date classes, PROJ.H and PROJECT.RC
  116.   files to make translation to other languages easier.  The only file that
  117.   needs to be changed now is PROJECT.RC.
  118.  
  119. Version 1.01B 11/22/88
  120.  -Minor changes to the ProjWindow class.  Added the Options Zoom view choice
  121.   to zoom in and out on the PERT chart. The right mouse button does the
  122.   same thing.  Rewrote the command method using a data driven approach.
  123.   Box sizes are now based on the font size for better display on any
  124.   monitor.
  125.  
  126. Version 1.0A  11/01/88
  127.  
  128.  -Version 1.0A was made slightly smaller and some minor changes were made
  129.   to clean up the windows and dialog box code.  Date arithmetic was speeded
  130.   up also.  There have been no functional changes from version 1.0.
  131.  -Version 1.0A corrects a minor bug that occurred when exiting
  132.   PC-Project with Windows still running.
  133.  
  134. Version 1.0  09/01/88
  135.  
  136.  -Printing uses the MS-Windows spooler.  The WIN.INI file must have
  137.   the entry spooler=yes for printing to work.  If there is not enough
  138.   memory to print with the spooler, an error message will be displayed.
  139.  
  140.  -PC-Project may give an "insufficient memory error" on some 80386
  141.   machines with older versions of Windows/386.  If necessary, use the
  142.   /N command line flag to run, e.g.
  143.  
  144.         WIN386 /N PROJECT.EXE
  145.  
  146.  
  147. Limitations
  148. -----------
  149.  
  150. PC-Project has some limitations compared to "professional" project
  151. management packages.  These may be addressed in the future.
  152.  
  153.  -Time is in days only.  There is no "calendar" facility to skip days.
  154.  -PC-Project does not balance resources or check for conflicts.
  155.  -PC-Project prints a summary report only; no graphics.
  156.  
  157. Please let me know if there are any bugs or suggestions by sending
  158. mail to the address at the bottom of this file.  Because PC-Project
  159. is distributed free of charge, I cannot provide technical support
  160. beyond answering questions by mail.
  161.  
  162.  
  163. Actor Users
  164. -----------
  165.  
  166. You may wish to use the date arithmetic or printing in your own programs.
  167. Please refer to the associated CLS and ACT files for documentation, or
  168. check The Whitewater Group BBS for the most recent versions.  The printer
  169. support was written by Mark Solinski.  The date arithmetic and space
  170. optimizer were written by Adam Rauch.
  171.  
  172.  
  173. About Actor
  174. -----------
  175.  
  176. Actor is an object-oriented programming language for Microsoft Windows.
  177. Actor is a complete development system capable of creating standalone
  178. MS-Windows applications.  No licensing fees are required to distribute
  179. applications written in Actor.
  180.  
  181. PC-Project was written by Zack Urlocker and is copyright 1988, The
  182. Whitewater Group.  All rights reserved.  For more information about Actor
  183. contact:
  184.  
  185.          The Whitewater Group,
  186.          Technology Innovation Center
  187.          906 University Place,
  188.          Evanston, IL, 60201.
  189.  
  190.          (312)491-2370
  191.