home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / WIN_NT / WINNER.ZIP / WINNER.TXT < prev   
Encoding:
Text File  |  1993-03-27  |  4.8 KB  |  77 lines

  1.  
  2.     Winner.txt     for     Winner.exe     1.07.07           11/15/92     Updated for March Release + bug fixes from original.
  3.  
  4.         1. This program owes much to various Microsoft sample programs from the SDK, C\C++ 7.0, NT, etc.
  5.         2. This program has been built and changed by several people internally, for their own use, and should not
  6.                 be taken as an example of good programming practice, nor do we contend any such notion.
  7.         3.    The program is designed to be a small, simple, easy to use editor for small modules and programs, and lacks
  8.                 many features, like context sensitive help, which are common on more sophisticated editors. Some features,
  9.                 like automatic indentation are hard coded. These of course can be changed by the programmer.
  10.                 The source code is provided so that you may alter the program to your needs and preferences. 
  11.                     Don't look for sophisticated things like comments. :)
  12.         4.    Only enough has been done during the port to get the program running under NT for our own use, 
  13.                 and should not be construed as a guide on how to port 3.x programs to NT, or write NT programs.
  14.         5.    The program included is an optimized product without debug code. You may want to recompile.
  15.         6.    This program is not properly device independent, is used only on VGA here, you may want to modify.
  16.         7. Compile, Build, Buildall, and Clean are run through the Winner.bat file for easy modification of parameters.
  17.         8. No claims are made for this program, and we make the normal disclaimers of liability.
  18.         
  19.         The program currently expects Winner.exe and Winner.bat to be in your path. We have them in c:\mstools\bin.
  20.         The program currently expects the msc.hlp and api32wh.hlp files in your path. We have them in c:\mstools\bin.    
  21.         The program currently expects makefiles with the name MAKEFILE.    
  22.         To build a project or compile, load any source file into the editor, and click the appropriate button.
  23.         You can cut and paste with the right mouse button. Highlight and click once to cut, click twice to copy.
  24.         If no text is highlighted and the right button is clicked, the contents of the clipboard are pasted at the current location.
  25.         Hold down the CTRL key while clicking the 2 button to minimize the current window.
  26.         Hold down the CTRL key while choosing the document for the second window to get word wrap on that window.
  27.         
  28.     Menu Item    Hot Key    Button        Event
  29.     
  30.     FILE
  31.     
  32.     New                ...                ...                Clears file from buffer, and starts new. Will prompt for save if changes were made.
  33.     Open            ^O            O                Open a file, and reads it into the buffer. Will prompt for save if changes were made.
  34.                                                             The program can load any size file, (EM_LIMITTEXT is currently set to 1 meg),
  35.                                                             and as they promised MS has fixed the 64k limit problem.
  36.     Open2nd        ^2            2                Opens a second window.
  37.                                                             If you hold down the CTRL key while clicking on the 2 button, the 1st window minimizes.
  38.                                                             If you hold down the CTRL key while choosing the file for the second window, you will
  39.                                                                 get a second window that has word wrap.
  40.     Save            ^S            S                Saves file. Does NOT prompt for confirmation.
  41.     Save As        ^V            A                Saves file. Promts for where and as.
  42.     Delete            Alt+D        D                Deletes a file. Asks for which, and are you sure.
  43.     Print                ^P            P                Prints file you are viewing.
  44.     Print Setup    Alt+P        ...                Causes the Print Setup Dialog to come up before printing.
  45.     Set Type        ^T            T                Allows you to set the typeface and color.
  46.     Exit                ^X            X                Exits program, or closes window if multiples. Prompts for save if changes were made.
  47.     
  48.     EDIT
  49.  
  50.     Undo            Alt+Bk        U                Undoes last edit.
  51.     Cut                Sh+Del        C                OR: Select text and click right mouse button. Cuts highlighted text.
  52.     Copy            Ctl+Ins        >                OR: Select text and double click on right mouse button. Copies highlighted text.
  53.     Paste             Sh+Ins        P                OR: Set cursor with left mouse button and click right button. Pastes text for clipboard.
  54.     Delete            Del            D                Deletes highlighted text.
  55.     Select All        ^A            A                Highlights all text.
  56.     
  57.     SEARCH
  58.  
  59.     Find                ^F            F                Brings up a Find - Replace dialog box.
  60.     Find Next        ^N            N                Finds next. Must do FIND first.
  61.     Find Prev        Alt+N        P                Finds previous. Must do FIND first.
  62.     Replace        ^R            R                Replaces text. Must do FIND first.
  63.     Replace All    Alt+A        A                Replaces every instance of one string with another. BE CAREFUL.
  64.     
  65.     BUILD
  66.     
  67.     Compile        ^C            C                Currently set for console type c files.
  68.     Build                ^B            B                Runs NMAKE. You must open a file first to set directory pointer.
  69.     Build All        ^D            A                Runs NMAKE. Builds all targets. You must open a file first to set directory pointer.
  70.     Clean            Alt+C        C                Kills obj etc files from current directory. 
  71.     Execute        ^E            E                Runs file of your choice.
  72.     
  73.     HELP
  74.     
  75.     C\C++            ^H or F1    ...                Brings up the C\C++ help file.
  76.     Win32            ^W or F2    ...                Brings up the Win32 help file.
  77.