home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / newstart / newstart.txt < prev    next >
Text File  |  1991-08-01  |  8KB  |  174 lines

  1.    NEWSTART.EXE 1.04
  2.       FreeWare from Mote Prime BBS 
  3.        Columbia South Carolina - 803-782-3772 
  4.        Sysop - Jeff Elkins 
  5.  
  6. $ HELP INDEX:
  7.  
  8. Program InformationProgramInformation
  9. PrecautionsAsAPrecaution
  10. Restore Microsoft's Default RLERestoreMicrosoftsDefaultRLE
  11. How Newstart OperatesHowNewstartOperates
  12. Deleting FilesDeletingFiles
  13. Viewing Bitmap FilesViewingBitmapFiles
  14. Creating RLE FilesCreatingRLEFiles
  15. Display AdaptersDisplayAdapters
  16. RLE File TypesRLEFileTypes
  17. Legal IssuesLegalIssues
  18. Tech SupportTechSupport
  19.  
  20.  
  21.  
  22.  
  23. # $ K + Program Information:
  24.  
  25. Files Included:     NEWSTART.EXE
  26.                                 NEWSTART.HLP
  27.                                 NEWSTART.WRI
  28.                                 Assorted .RLE Files.
  29.  
  30. NewStart  V1.03 is a Windows 3.0 utility designed to change your startup RLE file from Microsoft's to one of your choice.  Copy  Newstart, it's .HLP file  and the .RLE  files you wish to use to generate startup screens into your windows subdirectory or the subdirectory of your choice. 
  31.  
  32.  
  33.  
  34. # $ K + As a Precaution      
  35.  
  36. Make and KEEP a copy of WIN.COM in your windows subdirectory. Call it mywin.com or whatever you choose EXCEPT for WINBAK.COM
  37.  
  38. NewStart will create a copy of WIN.COM called WINBAK.COM before it changes your RLE. It does this each time you change the RLE so you always have a copy of the previous WIN.COM in your Windows directory. If the WIN.COM produced by NewStart fails to start windows properly, rename WINBAK.COM WIN.COM and try again.
  39.  
  40.  
  41.  
  42. # $ K + Restore Microsofts Default RLE
  43.  
  44. NewStart has a button which will restore Microsoft's default RLE file. If for any reason you want the default RLE restored click this button.
  45.  
  46.  
  47.  
  48. # $ K + How Newstart Operates:
  49.  
  50. Newstart uses methods previously described to build a new WIN.COM file in your windows subdirectory. In essence, It COMBINES  the files  WIN.CNF' ,a .LGO file,  and the .RLE file (Run-Length Encoded 4-bit) bitmap into the file 'WIN.COM'.  This is the equivalent of the DOS copy command:
  51.  
  52. COPY WIN.CNF  + VGALOGO.LGO + ???.RLE /B WIN.COM.
  53.  
  54. # $ K + Deleting Files:
  55.  
  56. The delete button allows you to delete a highlighted file. After the button is pressed a message box is displayed, asking for confirmation of the deletion.
  57.  
  58. # $ K + Viewing RLE Files:
  59.  
  60. NewStart allows you to view your RLEs by clicking the view radio button then double-clicking the appropriate file or by highlighting the file and pressing the Execute button.
  61.  
  62.  
  63. # $ K + Creating RLE Files: 
  64.  
  65.  To create your own RLE file create a graphics file in Windows Paint or the paint program of your choice.Save it as a BMP or GIF file (if your paint program allows GIF format).  If like me you can't draw worth a hoot start with a GIF you know and love.  The image can be no larger than 640X480 and have no more than 16 colors.  NewStart imposes a limit of 63K for maximum size of any RLE it processes.
  66.  
  67. Next, use a graphics conversion program such as WinGIF  or Paint Shop  to convert the BMP or GIF file to a 'Format RLE' or 'Format RLE 4'  file.  The file should now  be usable as a Windows 3.0 startup screen. 
  68.  
  69.  
  70.  
  71. # $ K + Display Adapters:
  72.  
  73. As far as display adapters go, NewStart has been tested on VGA.  Support code for  XGA , 3514/A , SuperVGA , EGA , Hercules and  CGA  is present but HAS NOT BEEN TESTED !
  74.  
  75. To determine video vertical resolution I'm using the Windows API call  GetDeviceCaps(HDC,vertres) 
  76.  
  77.  Petzold's "Programming  Windows"  version 3 lists the following values:
  78.  
  79.                          CGA       EGA      VGA    8514/A
  80.  
  81.   VERTRES      200        350        480         760 
  82.  
  83.    In addition, from PC  Magazine:
  84.  
  85.                                HERCULES   SVGA   XGA
  86.     VERTRES                348            600      768
  87.  
  88.    producing the following selection table:
  89.  
  90.     VERTRES          .LGO FILE          DEFAULT RLE FILE
  91.  
  92.  
  93.          200           CGALOGO.LGO        CGALOGO.RLE
  94.          348           HERCLOGO.LGO      HERCLOGO.RLE
  95.          350      .    EGALOGO.LGO        EGALOGO.RLE
  96.     >= 480           VGALOGO.LGO        VGALOGO.RLE
  97.  
  98. EGA monochrome users may have problems. I'd try to copy your EGAMONO.LGO file in the system directory to EGALOGO.LGO and see if it works. Repeat these steps for the EGAMONO.RLE file.
  99.  
  100. # $ K + RLE File Types
  101.  
  102. RLE stands for Run Length Encoded.  RLE's are compressed images (compressed, in this context, meaning the size of the file, somewhat like the compression gained when you ZIP a  program).  
  103.  
  104. There are two different types of RLE files:  CompuServe-style RLE files and Microsoft-style RLE files.  CompuServe RLE files will NOT work properly with NewStart. Use only the Microsoft variety.
  105.  
  106. Microsoft-style RLE files also come in several  types.  The only kind  usable for startup screens are RLE4 files.  The 4 stands for 4-bit; i.e. a maximum of 16 colors. 
  107.  
  108. Windows BMP files can be translated to RLE4 format using either Paint Shop or WinGIF.  Both of these are shareware programs, available on many BBS's, (of course on Mote Prime!) as well as CompuServe and GEnie.  Be sure to use a 1991 version of Paint Shop; earlier versions were not reliable when producing RLE4 files. 
  109.  
  110. # $ K + Legal Issues
  111.  
  112. This program is Freeware. 
  113.  
  114. This program  copyrighted and NOT  in the public domain. You are free to use it and pass it along to others as long as no fee  is charged. Shareware/Freeware distributors who charge a fee may distribute this program as long as the charges reflect their costs only.
  115.  
  116. DISCLAIMER  1:  The  Microsoft  Windows  startup screen (the one that comes up when you first load Windows) is actually a copyright  notice.  Any problems resulting from the removal of this screen are yours not mine. This program does  however, allow you to restore the original  startup screen at any time.
  117.  
  118. DISCLAIMER  2:  No matter what damages may result from use of this program,  I  am NOT responsible.  No warranties are offered either express nor implied).   Use it at your own risk! 
  119.  
  120.  
  121.  
  122. # $ K + Tech Support:
  123.  
  124. If  you have trouble contact me on GENIE (J.ELKINS1) , COMPUSERVE (70302,1573) or on my BBS (803-782-3772) and I'll try to help resolve the problem.                 
  125.  
  126.  
  127.  
  128. $ Index
  129. # ProgramInformation
  130. $ Program Information
  131. K Program;information;newstart;mote;prime;bbs;filesinstall;installation;setup;background
  132. + Browse:010
  133. # AsAPrecaution
  134. $ As A Precaution
  135. K Precaution;caution;backup;bak;win.com;disclaimer;important
  136. + Browse:020
  137. # RestoreMicrosoftsDefaultRLE
  138. $ Restore Microsofts Default RLE
  139. K restore;default;recover;options
  140. + Browse:030
  141. # HowNewstartOperates
  142. $ How Newstart Operates
  143. K Operate;operations;how;conventions;programming
  144. + Browse:040
  145. # DeletingFiles
  146. $ Deleting Files
  147. K Deleting,erase
  148. + Browse:060
  149. # ViewingBitmapFiles
  150. $ Viewing Bitmap Files
  151. K Bitmap,RLE,BMP
  152. + Browse:050
  153. # CreatingRLEFILES
  154. $ Creating RLE Files
  155. K Create;graphics;paint;bmp;gif;rle;paintshop;windows paint;image;covert;conversion;draw
  156. + Browse:050
  157. #DisplayAdapters
  158. $ Display Adapters
  159. K display,VGA;EGA;CGA;XGA;Hercules,super VGA,3514/A;video;resolution;programming;values;disclaimers
  160. + Browse:060
  161. # RLEFileTypes
  162. $ RLE File Types
  163. K graphic,rle,microsoft,compuserve
  164. + Browse:070
  165. # LegalIssues
  166. $ Legal Issues
  167. K legal,warranties,damages,microsoft,publicdomain,freeware
  168. + Browse:080
  169. # TechSupport
  170. $ Tech Support
  171. K tech support;trouble;help;assistance;GEnie;Compuserve;CIS;author;contact
  172. + Browse:070
  173.  
  174.