home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 026A / MSPLIT.ZIP / readme.txt < prev    next >
Text File  |  1997-02-19  |  9KB  |  193 lines

  1. MasterSplitter(TM) Help Contents
  2.  
  3.     1.0    License
  4.     2.0    Introduction
  5.     3.0    Installing and System Requirements
  6.     4.0    Splitting Files
  7.     5.0    Joining Files
  8.     6.0    Comparing Files
  9.     7.0    Ordering the Registered Version
  10.  
  11.  
  12. 1.0    License
  13.  
  14. VERSION INFORMATION:
  15.  
  16. MasterSplitter(TM) Version 1.0.
  17. Copyright 1997 Tomasoft Corporation.
  18. ALL RIGHTS RESERVED.
  19.  
  20. The dynamic link libraries that accompany this software are Coprighted by Microsoft Corporation.  
  21. Also MSDOS, Microsoft Windows 3.1, Windows 95 and Windows NT are trademarks of Microsoft 
  22. Corporation.
  23.  
  24.  
  25. GOVERNING LAW:
  26.  
  27. This agreement shall be governed by the laws of Canada and the Province of Ontario.
  28.  
  29. DISCLAIMER OF WARRANTY:
  30.  
  31. THIS SOFTWARE AND INSTRUCTIONS ARE SOLD "AS IS" AND WITHOUT WARRANTIES AS 
  32. TO PERFORMANCE OF MERCHANTABILITY OR ANY OTHER WARRANTIES WHETHER 
  33. EXPRESSED OR IMPLIED.  BECAUSE OF THE VARIOUS HARDWARE AND SOFTWARE 
  34. ENVIRONMENTS INTO WHICH THIS PROGRAM MAY BE PLACED, NO WARRANTY OF 
  35. FITNESS FOR A PARTICULAR PURPOSE OF ANY KIND IS OFFERED.  GOOD DATA 
  36. PROCESSING PROCEDURE DICTATES THAT ANY PROGRAM BE THOROUGHLY TESTED 
  37. WITH NON-CRITICAL DATA BEFORE RELYING ON IT.  THE USER MUST ASSUME THE 
  38. ENTIRE RISK OF USING THE PROGRAM.  IN ANY CASE LIABILITY WILL BE LIMITED 
  39. EXCLUSIVELY TO THE AMOUNT OF MONEY THAT TOMASOFT CORPORATION RECEIVED 
  40. FROM THE USER FOR THE USE OF THIS SOFTWARE PRODUCT.
  41.  
  42. SHAREWARE AND REGISTERED VERSION:
  43.  
  44. By using this software you indicate your acceptance of this software license agreement. . The 
  45. shareware version is identified by the word "Unregistered" in the title bar and within the "About 
  46. Box" of the applicaiton.  You may use this shareware version of this software on a trial basis 
  47. for only 30 days. After that period of time you must purchase registered version of the software. 
  48. The shareware or registered version may only be used on one computer at a time.  Storage on the 
  49. computer is limited to one hard disk except where required for backup purposes.  The registered 
  50. version may be stored on a network drive provided that sufficient licences have been purchased 
  51. for the maximum number of concurrent users at that site.  The user may not modify or reverse 
  52. engineer the software or documentation files contained in this version in any way.  The shareware
  53. version may be redistributed to anyone else provided that all files associated with the shareware
  54. version are provided together.  No monetary compensation may be accepted or requested by 
  55. anyone for the distribution of this software without the expressed written permission 
  56. of Tomasoft Corporation.
  57.  
  58.  
  59.  
  60. 2.0    Introduction
  61.  
  62. The purpose of MasterSplitter(TM) is to split large files in order to move them via floppies or 
  63. for transmission via E-mail. MasterSplitter(TM) is an ultra-fast 32 bit file splitter.  The file 
  64. can either be a binary or a text file.  The program features an intuitive graphical user interface 
  65. that makes splitting files easy.  
  66.  
  67. The program can also be easily be invoked directly from Windows Explorer by simply right-clicking
  68. on any file and then selecting Send to MasterSplitter.
  69.  
  70. If you want to send the pieces to someone who doesn't have MasterSplitter(TM), simply check the 
  71. "Create Reassemble Batch File" check box and a Win95/NT 4.0 batch file will automatically be 
  72. created that you can send with the pieces to put it back together.
  73.  
  74. 3.0    Installing and System Requirements
  75.  
  76. MasterSplitter(TM) has been tested under Microsoft Windows 95 and Windows NT 4.0 with a Intel 
  77. Pentium based PC.  There is currently no version for MSDOS or Microsoft Windows 3.1 (Although 
  78. there may be later).
  79.  
  80. To install MasterSplitter(TM), simply unpack the zip file and run the setup.exe program.  To 
  81. uninstall it, select MasterSplitter(TM) from the Add/Remove Programs in the Control Panel 
  82. (or run uninstal.exe).
  83.  
  84. 4.0    Splitting Files
  85.  
  86. To start MasterSplitter(TM),, choose it from the Start Menu OR simply start it directly from Windows 
  87. Explorer by simply right-clicking on any file and then selecting Send to MasterSplitter(TM),.  The 
  88. split tab from MasterSplitter(TM),  controls the file splitting operation.  Enter the file name 
  89. including the full path of the file you wish to split. If you can't recall the name, just select 
  90. the browse button and you can find it.
  91.  
  92. Enter the size of the pieces you want to create.  The default corresponds to a full 3.5 high density 
  93. diskette.  IF AND ONLY IF you're confident that you will no longer need the original file, select the 
  94. check box for delete original when done.  I DON'T recommend doing this until your comfortable with 
  95. using the program.
  96.  
  97. Be sure that you have free disk space at least equal to the size of file your splitting or it 
  98. won't work.  When you're ready to go, click on the split button to get things started.
  99.  
  100. If you want to send the pieces to someone who doesn't have MasterSplitter(TM), simply check the 
  101. "Create Reassemble Batch File" check box and a Win95 batch file will automatically be created that 
  102. you can send with the pieces to put it back together.  You can use this same method to send the 
  103. pieces to someone with MSDOS or Microsoft Windows 3.1, except that you'll have to edit the batch 
  104. file to remove the quotes and make it compatible with short (8.3) file names of MSDOS.  The batch 
  105. file will look something like this:
  106.  
  107. Lets say you have a file called "splitme" which you have split into three pieces.  Then the 
  108. following batch file will recombine them:
  109.  
  110. Windows 95
  111. copy /b "splitme.001" + "splitme.002" + "splitme.003"  "splitme"
  112.  
  113. MSDOS and Windows 3.1
  114. copy /b splitme.001 + splitme.002 + splitme.003  splitme
  115.  
  116. Note that the last file is the destination and has no "+" sign in front of it.  The /b is required. 
  117. (See the MSDOS help for details).
  118.  
  119.  
  120.  
  121. 5.0    Joining Files
  122.  
  123. To start MasterSplitter(TM), choose it from the Start Menu.  The join tab from 
  124. MasterSplitter(TM) controls the file splitting operation.  Enter the file name of the FIRST of the 
  125. previously split pieces including the full path.  If you can't recall the name of a piece, just select 
  126. the browse button and you can find it.
  127.  
  128. IF AND ONLY IF you're confident that you will no longer need the file pieces, select the check box for 
  129. delete pieces when done.  I don't recommend doing this until your comfortable with using the 
  130. program.
  131.  
  132. When you're ready to go, click on the join button to get things started.
  133.  
  134.  
  135. 6.0    Comparing Files
  136.  
  137. The compare tab from MasterSplitter(TM) controls the file comparison operation. You may want to use 
  138. this as a double check before deleting anything.  Enter the original (BIG) file name including the 
  139. full path of the file you wish to compare with its pieces. If you can't recall the name, just select 
  140. the browse button and you can find it.
  141.  
  142. Enter the file name of the FIRST of the previously split pieces including the full path.  If you 
  143. can't recall the name of a piece, just select the browse button and you can find it.
  144.  
  145. When you're ready to go, click on the compare button to get things started.
  146.  
  147.  
  148.  
  149.  
  150. 7.0    Ordering the Registered Version
  151.  
  152. Please send a $10 check or money order payable to "Tomasoft Corporation" by completing the 
  153. following form.
  154.  
  155. Number of Copies        ______   x   $10 Canadian ( or $8 US) 
  156. Total        =     ______   x  1.08 (Prov. Tax)    =    ______
  157.  
  158. For quantities greater than 30, write to Tomasoft Corporation at the address below (or by e-mail) 
  159. to discuss site license arrangements.
  160.  
  161. Add $2.50 for shipping and handling if you require delivery by regular mail.
  162.  
  163.  
  164. Method of shipment:    By E-mail: ___________________________ (Internet E-mail address)
  165.  
  166. Or By Regular Mail:                        
  167. (Fill in your Name and
  168. Address Here)
  169. ____________________________________
  170. |                                   |
  171. |                                   |
  172. |                                   |
  173. |                                   |
  174. |                                   |
  175. |                                   |
  176. |                                   |
  177. |                                   |
  178. |                                   |
  179. |                                   |
  180. |__________________