home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / PASCAL / VWCIS / README next >
Text File  |  1993-10-28  |  7KB  |  174 lines

  1.                    IMPORTANT INFORMATION
  2.                    ---------------------
  3.  
  4. This version of Vision Workshop is an Evaluation Copy, which is limited in
  5. the number of resource elements. More than that, no resource objects can be
  6. added to an existing project (via Add to project) and no resource objects
  7. can be saved as a separate file (via Save resource as).
  8.  
  9. FILES OF THE EVAL COPY
  10. ----------------------
  11.  
  12. VW.EXE        Protected-Mode launch program; use this file to start
  13.               Vision Workshop
  14.  
  15. VWMAIN.EXE    Vision Workshop main module; DO NOT LAUNCH this program
  16.               directly, only via calling VW.EXE or VWR.EXE respectively
  17.  
  18. VW.HLP        help file for Vision Workshop
  19.  
  20. VWPREDEF.PAS  pascal source file containing all important Turbo Vision
  21.               constants; this file can be included into your own projects
  22.               to be able to work with symbolic constants within Vision
  23.               Workshop
  24.  
  25. README        the file you are currently reading
  26.  
  27. VWSAMPLE.REZ  sample resource file; contains a standard dialog, a menu bar
  28.               and a string table
  29.  
  30. VWPOPUP.REZ   sample resource file; contains a menu bar and a popup menu,
  31.               which is used in the sample VWPOPUP
  32.  
  33. VWSAMPLE.PAS  sample program; uses resource file VWSAMPLE.REZ
  34.  
  35. VWPOPUP.PAS   sample program; uses resource file VWPOPUP.REZ
  36.  
  37.  
  38. FILES OF THE RETAIL VERSION
  39. ---------------------------
  40.  
  41. Vision Workshop main directory:
  42.  
  43. BPC.CFG       configuration file for BPC.EXE; this file is created by the
  44.               Vision Workshop installation program
  45.  
  46. VW.EXE        Protected-Mode launch program; use this file to start
  47.               Vision Workshop
  48.  
  49. VWR.EXE       Real-Mode launch program; use this file to start Vision Workshop
  50.               if you have created a Real-Mode VWMAIN.EXE with Turbo Pascal
  51.               7.0 (TPX)
  52.  
  53. VWMAIN.EXE    Vision Workshop main module; DO NOT LAUNCH this program
  54.               directly, only via calling VW.EXE or VWR.EXE respectively
  55.  
  56. VW.HLP        help file Vision Workshop
  57.  
  58. VWMAIN.PAS    source code of Vision Workshop's main program; this file is
  59.               needed if you rebuild Vision Workshop when installing
  60.               user-defined objects
  61.  
  62. VWPREDEF.PAS  pascal source file containing all important Turbo Vision
  63.               constants; this file can be included into your own projects
  64.               to be able to work with symbolic constants within Vision
  65.               Workshop
  66.  
  67. USERLIBS.PAS  Include unit for compiling user-defined objects; DO NOT CHANGE
  68.               THIS FILE!
  69.  
  70. MANUAL.DOC    documentation file for Vision Workshop
  71.  
  72. README        a file quite similar to this one
  73.  
  74.  
  75. Sample directory
  76.  
  77. VWSAMPLE.REZ  sample resource file; contains a standard dialog, a menu bar
  78.               and a string table
  79.  
  80. VWCOMBO.REZ   sample resource file; contains standard dialog with an inputline
  81.               which uses a TComboBox object (USERCOMB) - to be able to edit
  82.               this resource, the unit USERCOMB.PAS has to be installed in
  83.               Vision Workshop
  84.  
  85. VWPOPUP.REZ   sample resource file; contains a menu bar and a popup menu,
  86.               which is used in the sample VWPOPUP
  87.  
  88. VWCAL.REZ     sample resource file; resource file for the sample program
  89.               VWCAL
  90.  
  91. VWRES.REZ     sample resource file; contains a standard file dialog
  92.               (TFileDialog), which is used in the sample VWDLG
  93.  
  94. VWSAMPLE.PAS  sample program; uses resource file VWSAMPLE.REZ
  95.  
  96. VWCOMBO.PAS   sample program; uses resource file VWCOMBO.REZ
  97.  
  98. VWPOPUP.PAS   sample program; uses resource file VWPOPUP.REZ
  99.  
  100. VWRES.PAS     sample program; shows the creation of resource based on
  101.               source code - generates VWRES.REZ
  102.  
  103. VWDLG.PAS     sample program; uses standard file dialog from VWRES.REZ
  104.  
  105. VWCAL.PAS     sample program; uses special inputlines and validators, which
  106.               are specialized on date entry - this file uses the units
  107.               VWDATE.PAS, VWDATEIL.PAS, VWDATVAL.PAS
  108.  
  109. VWDATE.PAS    unit for the sample file VWCAL;
  110.  
  111. EXEDEMO.PAS   sample program; uses the resource file VWSAMPLE, which has to
  112.               be attached to the .EXE file before execution - see the comment
  113.               in EXEDEMO.PAS
  114.  
  115. USERVAL.PAS   sample unit; illustrates the implementation of user-defined
  116.               validator objects
  117.  
  118. USERCOMB.PAS  sample unit; illustrates the implementation of user-defined
  119.               view objects
  120.  
  121. VWDATEIL.PAS  unit for sample program VWCAL; implements a user-defined
  122.               inputline
  123.  
  124. VWDATVAL.PAS  unit for sample program VWCAL; implements a user-defined
  125.               validator object
  126.  
  127. USERVIEW.PAS  sample program; illustrates the implementation of user-defined
  128.               view objects
  129.  
  130. USERDLG.PAS   sample program; illustrates the implementation of user-defined
  131.               dialog objects
  132.  
  133. UDLG.PAS      sample program; illustrates the implementation of user-defined
  134.               dialog objects - unlike USERDLG this unit uses the standard
  135.               edit dialog and therefore is the most straightforward variant
  136.  
  137. LINKDLG.PAS   sample program; illustrates the implementation of user-defined
  138.               dialog objects - this sample illustrates how to create a link
  139.               to a subview from within the dialog editor
  140.  
  141. EXEREZ.EXE    sample program; this is the .EXE file which was created by
  142.               attaching VWSAMPLE.REZ to the file EXEDEMO.EXE - this file can
  143.               be edited with Vision Workshop directly!
  144.  
  145. VWRES2.PAS    sample program; uses resource file which was created by adding
  146.               VWSTAT.STM (generated by VWSTAT.PAS). This file has to be
  147.               renamed to VWSAMP2.REZ before it can be used in VWRES2.PAS.
  148.               This sample illustrates how to include objects, which are not
  149.               supported by Vision Workshop like status lines, into resource
  150.               files.
  151.  
  152. VWSTAT.PAS    sample program; generates VWSTAT.STM which contains a
  153.               statusline object. This file will be included into the resource
  154.               file VWRES.REZ and the so generated resource file will be
  155.               saved by the name of VWSAMP2.REZ
  156.  
  157.            _________________________________________________
  158.  
  159. The retail version of Vision Workshop with online documentation and the
  160. example files can be ordered from the authors for the price of
  161.  
  162.   UK: £ 33 + £5 for shipping and handling
  163.   US: $ 49 + $8 for shipping and handling
  164.   Germany: DM 69.- + DM 5.- shipping and handling
  165.  
  166. To order your copy of Vision Workshop, you can either send a check or
  167. international money order to this address:
  168.  
  169. Freddy Ertl, Bothmerstr. 20, 80634 Munich, Germany
  170. Fax: ++49 89 133347
  171. CIS: 100064,2607
  172.  
  173.  
  174.