home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / FERRAMEN / F_STAMP / README.TXT < prev    next >
Encoding:
Text File  |  1994-06-20  |  2.8 KB  |  84 lines

  1. -----------------------------------
  2. Gregg Irwin's Freeware File Stamper
  3. -----------------------------------
  4. The timestamp on a file is often one of the first things you
  5. check when you think there's a problem with a file. Being able
  6. to "tag" your files with a specific date/time makes it easier 
  7. to identify bogus files quickly and easily, it also adds that
  8. "professional" air to your app when all your files have the
  9. same timestamp. So make your VB apps (and all your other apps)
  10. look more professional and forget trying to remember if version
  11. one was built at 03:24:17. You can use the timestamp as a 
  12. version tag too. 
  13.  
  14. Version 1.0  = 01:00:00
  15. Version 1.01 = 01:01:00
  16. Version 1.1  = 01:10:00
  17. Version 2.0  = 02:00:00
  18.  
  19.  
  20. -----------------------------------
  21. How to do it
  22. -----------------------------------
  23. 1) Start File Stamper (it only runs as an icon)
  24.  
  25. 2) Use the Set Stamp Date menu option to set the
  26.    desired timestamp information.
  27.  
  28. 3) Drag files from File Manager and and drop 
  29.    them on File Stamper.  
  30.  
  31. 4) You're done. What could be easier?
  32.  
  33. -----------------------------------
  34. How *else* to do it
  35. -----------------------------------
  36. File Stamper 1.1 supports command line parameters to facilitate
  37. automatic, or batch, processing. The parameters it expects are
  38. FileSpec, Date, and Time, in no particular order. Each parameter
  39. should be separated by a space, formatted as follows:
  40.  
  41. FileSpec /d<date> /t<time>
  42.  
  43. FileSpec assumes *.* if none is given. If a drive or directory
  44. is specified then it assumes ?:\*.* so you can just say "B:\"
  45. to stamp all files in B:\.
  46.  
  47. The Date(/d) and Time(/t) switches are optional. If they are
  48. omitted then the current date and/or time is used. Internally
  49. the DateValue and TimeValue functions are used so international
  50. date formats are supprted. [If you use AM or PM with the Time
  51. then do *not* separate it with a space (i.e. use 12:00:00AM,
  52. and not 12:00:00 AM)]
  53.  
  54. If a command line is detected then no window is displayed and
  55. File Stamper will terminate as soon as the last file is stamped.
  56.  
  57. -----------------------------------
  58. Required Files
  59. -----------------------------------
  60. FSTAMPER.EXE(ver 1.10)
  61. STMPR100.DLL(ver 1.10)
  62. VBCTL3D.VBX (ver 1.50)
  63. SUBEZ.VBX   (ver 1.01)
  64.  
  65. -----------------------------------
  66. Disclaimer
  67. -----------------------------------
  68. This software is available AS IS without warranty of any kind, 
  69. either expressed or implied, Blah Blah Blah... If it damages
  70. anyone or anything you can't blame me.
  71.  
  72. This software is "Freeware" meaning that you can distribute it
  73. to whomever you so desire but you may not charge any money for
  74. it.
  75.  
  76. -----------------------------------
  77. History
  78. -----------------------------------
  79. June 16, 1994    Initial Freeware Release
  80.  
  81. June 20, 1994    Freeware Release 1.1
  82.         Added Command Line processing (Thanks to Bob
  83.         Feakins for the suggestion)
  84.