home *** CD-ROM | disk | FTP | other *** search
/ Home Office Executive / QuantumAxcess-HomeOfficeExecutiveForWindows-Win31.iso / word / fylbx6 / readme.txt < prev   
Text File  |  1993-12-10  |  5KB  |  142 lines

  1. 5:51PM  12/10/93
  2.  
  3. TO: All registered FileBox owners
  4. RE: Updating FILEBOX.INI to use FileBox for WW6
  5. FR: Bud Brown
  6.  
  7. Greetings!
  8.  
  9.     Despite a lot of the carping and complaining you read in the CIS Forums about WW6; many of 
  10. which are legitimate (e.g. the slow performance, problems with IsDirty() and the need to use SHARE),
  11. WW6 is still an exciting product that pushes the envelope in many areas. Features like AutoCorrect,
  12. variable width columns and WordBasic's new FilePreview and PicturePreview controls move WW6 beyond
  13. word processing into the realm of desktop publishers with significant power!
  14.  
  15.     WinWord 6 continues the migration path toward true *document* processing. OLE2 has the 
  16. potential to render moot the distinction between, for example, a word processing file and a spread-
  17. sheet file and a graphics file. Although VBA hasn't yet arrived for WinWord 6, WordBasic has grown
  18. dramatically in size, power and flexibility. In particular, the addition of 400+ statments, a few
  19. important controls and the significant improvement of dialog controls open up incredible worlds of
  20. possibility.
  21.  
  22.     After weighing the possibilities against the trouble, I decided that for my own personal 
  23. use [I am a full time pastor, a doctoral student and my wife is working on her MSW] the new power
  24. of WordBasic justified the trouble involved in moving FileBox into WW6. You've already received an
  25. e-mail message telling you of some of the new features:
  26.  
  27.     * MOVE        You can now move files between folders by "point-and-shoot" Without a lot
  28.             of annoying redraws of the screen. Ah, the joys of dynamic dialog boxes!
  29.  
  30.     * COPY        ditto
  31.  
  32.     * PURGE        You can step through your entire document collection, one folder and one
  33.             file at a time, purging those entries that no longer point to extant disk
  34.             files. It includes the ability to verify each potential purge or do it all
  35.             in an automated batch file.
  36.  
  37.     * SPEED        The enhanced array processing capabilities and the language extensions have
  38.             eliminated a number of API calls. Significant improvements in speed in 
  39.             certain areas.
  40.  
  41.     I've been working on the program for about a month, now. I think it's ready for beta test,
  42. and I'm looking for your help in several areas:
  43.  
  44.     1.    Bugs - when and where does it crash?
  45.     2.    Anomalies - where doesn't the program behave as you might expect? What is counter-
  46.             intuitive? What is mislabelled?
  47.     3.    Improvements - what additions and modifications need to be made?
  48.  
  49.     Use the program, play around with its various features and let me know what you don't like.
  50.  
  51.                     ****************************
  52.                        IMPORTANT MODIFICAITON
  53.                     ****************************
  54.  
  55.         IN ORDER TO USE VERSION 6, YOU MUST MAKE ONE CHANGE IN YOUR FILEBOX.INI FILE!
  56.  
  57. After reviewing the code, one area I found in need of improvement were the [Section] names in the
  58. FILEBOX.INI. Because of some data conversions and some changes in the way that initialization files
  59. are handled in WinWord, I decided to make one change which will require a manual modificiation.
  60.  
  61. Currently you will find that your FILEBOX.INI looks something like this example:
  62.  
  63. [Config]
  64. .
  65. .
  66. .
  67.  
  68. [Folders]
  69. Folder 1=Correspondence
  70. Folder 2=Work in Progress
  71. Folder 3=Storage
  72.  
  73. [Folder 1]
  74. Files=2
  75. 1=....
  76. 2=....
  77.  
  78. [Folder 2]
  79. Files=3
  80. 1=...
  81. 2=...
  82. 3=...
  83.  
  84. [Folder 3]
  85. Files=9
  86. .
  87. .
  88.  
  89. The [Folder x] section names need to be changed! The *variable setting* taken from the [Folders]
  90. section needs to be used to replace the [Section] names for each folder. By way of example, the
  91. aforementioned sample file needs to be changed to look like this:
  92.  
  93. [Config]
  94. .
  95. .
  96. .
  97.  
  98. [Folders]
  99. Folder 1=Correspondence
  100. Folder 2=Work in Progress
  101. Folder 3=Storage
  102.  
  103. [Correspondence]
  104. Files=2
  105. 1=....
  106. 2=....
  107.  
  108. [Work in Progress]
  109. Files=3
  110. 1=...
  111. 2=...
  112. 3=...
  113.  
  114. [Storage]
  115. Files=9
  116. .
  117. .
  118.  
  119.     When this one change has been made, the FILEBOX.INI is ready for version 6!
  120.  
  121.                 *************************
  122.                       INSTALLATION
  123.                 *************************
  124.  
  125.     I haven't yet developed the installation routines, but you can handle it yourself. There
  126. are two methods, either of which you can use.
  127.  
  128. METHOD # 1-
  129.  
  130.     Put FILEBOX.DOT in the X:\WINWORD\STARTUP directory.
  131.     Rename or Delete the FILEBOX macro in your NORMAL.DOT
  132.  
  133. METHOD # 2 -
  134.  
  135.     Copy FILEBOX.DOT into the WINWORD\TEMPLATE directory
  136.     Open NORMAL.DOT
  137.     Open FILEBOX.DOT
  138.     Use the FileTemplatesOrganizer to copy the FILEBOX macro in FILEBOX.DOT to NORMAL.DOT
  139.  
  140.     Then you should be up and running!
  141.  
  142.