home *** CD-ROM | disk | FTP | other *** search
/ Windows Shareware GOLD / NuclearComputingVol3No1.cdr / _bbs1 / f1409.zip / README < prev    next >
Text File  |  1991-05-22  |  6KB  |  117 lines

  1. //----------------------------------------------------------------
  2. //                deus ex machina (version 0.11235813213455)
  3. //                  scot shinderman, compuserve 72277, 171
  4. //----------------------------------------------------------------
  5.  
  6. another saturday of bad weather in new york city.  so...
  7. improvements include a view by option (icon, name, extension...) and
  8. better memory / icon file handling.  I now use the win.ini file to
  9. save the top level window's coordinates along with the drive bay.
  10. Icon and program attachments are also saved there.  I don't use the
  11. fileman section right now due to laziness and also because it
  12. generally does not contain the path.  Folders that are deleted will
  13. disappear from the screen.  There is a space in the icon association
  14. dialog box for the run associates so that they can be changed by
  15. hand.  Sorry, I still haven't found out how to rename directories.
  16. If anybody has code out there for this it would be greatly
  17. appreciated.  The letter 'c' cleans up a window, 'i' gives info about
  18. the file(s) or folder(s) that are selected, and the del key deletes
  19. the selected items.  'a' selects all.  You can also set the folders
  20. to a few different colors so that some stand out more.
  21.  
  22.     Some people requested that the window automatically shows an
  23. executable's icons.  I found that the time to open a file and parse
  24. through its crazy resource scheme was just too slow.  In a few clicks
  25. you can select an .exe, do a get icons, and then do a set icon.
  26.  
  27.     You can copy or move files from one place to the other.  Holding
  28. down the control key before the drag will cause a copy while just
  29. picking something up and moving it will copy it to its destination
  30. and delete it from its source.
  31.  
  32.     enjoy.
  33.  
  34. p.s. this program is still offered as where-ware.  send money where-
  35. ever you wish!  (suggestion: new york has a huge budget defecit and
  36. could probably use a few extra bucks)
  37.  
  38.  
  39. //----------------------------------------------------------------
  40. //                    notes from first upload        
  41. //----------------------------------------------------------------
  42.     Enclosed is a program that I wrote over the past couple of
  43. weekends.  It is a mac-like interface for windows 3.0 that uses the
  44. dos tree structure to emulate the finder.
  45.  
  46.     Here are some quick notes...
  47.  
  48.     You can click and drag icons(& folders) into and out of windows
  49. and the appropriate move will take place.  (Holding down the control
  50. key does a copy).  Also during any move/copy you can switch to
  51. another program since it time slices on a per-file basis.  (So if you
  52. copy lots of small files you'll have control most of the time.
  53. Copying large files is done in one shot so it will yield much less.)
  54. You can also cancel any move/copy in the middle and the program will
  55. clean up what it has done.  The File Manager that ships with Windows
  56. 3.0 does not do this - it just halts and lets you pick up the pieces!!!
  57.     Since there is no direct provision for binding resources to a
  58. file as on the macintosh, d_ex will create a file called
  59. "DESKTOP.DSK" to store the information it needs.  Right now I store
  60. the file in each subdirectory.  The resources that are "bound"
  61. include icons and descriptions.  There is a file stored on the root
  62. of the drive which will store a list of icons.  You can point to a
  63. file and then choose Use Icon...  Also, you can set up associations
  64. so that an extension will automatically show a certain icon - this is
  65. the main way I intended the program to be used.  You can bind a
  66. description to a file so that the text on the screen has <= 40
  67. characters instead of the 8.3 of DOS.  i.e. instead of Q4TH.123 you
  68. can have "fourth quarter, (123)"
  69.     You can automatically have a program run based upon the extension
  70. of a file.  It's a two step process to do this.  First, go into the Icon
  71. Association menu.  Create the extension you want with the add button.
  72. (you can give it a default icon here)  Then go into the Run associate menu
  73. (after pointing to the program you want to run in one of the windows).   
  74. A text box will ask for the extension to associate with the program.  
  75. Voila, - that's it.  Now when you double click on a file with the 
  76. appropriate extension, the original .EXE program will open with  the
  77. data file. 
  78.     There are some bugs (known to me) that I have not 
  79.     cleaned up yet; most are fairly superficial:
  80.  
  81.     1. Moving a folder to another will not update the
  82.        descendants of the source folder on the screen
  83.        (there path changes and therefore they become
  84.        invalid - the File Manager has the same problem
  85.        and just says something like "Invalid directory..." )
  86.  
  87.     2. There is a limit to 555 files per folder.
  88.        It's just an arbitrary number that I will change one
  89.        day.
  90.  
  91.     3.  There is a limit of 50 associations
  92.  
  93.     4.  When you copy a file from one folder to another
  94.         and it has an icon bound to it by hand, the icon
  95.         will not show up in the destination folder.  This
  96.         is because the icons are not bound to the file but
  97.         rather to the DESKTOP.DSK file which does not get
  98.         updated.
  99.  
  100.     5.  I don't know how to rename directories - only files
  101.         work now.
  102.  
  103.     6.    If you delete the assoc or icons.all files, strange
  104.         things will occur (like crashes) right now - unless
  105.         you delete all of the DESKTOP.DSK files.
  106.  
  107.     Any comments will be appreciated.
  108.     Send to compuserve # 72277,171 and address to scot.
  109.  
  110.  
  111. //----------------------------------------------------------------
  112. //                            end, readme
  113. //----------------------------------------------------------------
  114.  
  115.  
  116.  
  117.