home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / wdevnt.zip / QUICKGO.TXT < prev    next >
Text File  |  1993-11-22  |  4KB  |  83 lines

  1.  
  2.                        W I N D E V (TM)
  3.  
  4.                     Copyright ⌐, 1992-3
  5.                     ALL RIGHTS RESERVED
  6.  
  7.                     Helios Software Solutions
  8.                     Carr Brook House
  9.                     Chorley Old Road
  10.                     Brindle
  11.                     CHORLEY  PR6 7QZ
  12.                     England
  13.  
  14.                     Tel/Fax: +44 (0772) 324353
  15.                     CompuServe Mail: 100041,235
  16.  
  17.                        (QUICKGO.TXT)
  18.  
  19. QUICK START
  20. ===========
  21.  
  22. A) Tips
  23. -------
  24.  
  25. 1) The File Open dialog allows you to open multiple files at once.  You just
  26.    use Ctrl or Shift in conjunction with the left mouse button to select all
  27.    the files to open.
  28.  
  29. 2) Dialogs that accept multiple file names, such as File Open, Manage Files
  30.    and Extract Strings, can take a directory name as the first name in the
  31.    list.  All subsequent names are then assumed to be files in that directory.
  32.    eg: "c:\apps *.txt *.ini" is the same as "c:\apps\*.txt c:\apps\*.ini"
  33.  
  34. B) File Filters Customization
  35. -----------------------------
  36.  
  37. File filters are a means of using wild cards to list only files with matching
  38. names in the File Open/Save As dialogs.  You can predefine up to 10 filters
  39. for commonly used wild cards.  Note that you can have different sets of
  40. filters for each project, and for when you are working in non-project mode.
  41. In project mode, the default set of filters depends on which environment you
  42. select.  To configure the filters on the File Open dialog, choose the Global 
  43. Settings command on the settings menu, and click on the File Filters button
  44. on the Global Settings dialog.  Then specify your own filters, or click on
  45. the help button for further information.
  46.  
  47. C) Existing Makefiles
  48. ---------------------
  49.  
  50. If you want to use Windev to build a project for which you have an existing
  51. makefile, follow these steps:
  52.  
  53. 1) Choose the Select Project command from the Project menu.
  54. 2) In the Select Project dialog, fill in the full path to the directory in
  55.     which your makefile and source files are stored, and press the Change To
  56.     button.
  57. 3) Windev will change its working directory to your project directory, and
  58.     create a configuration file called windev.ini.
  59. 4) Choose the Configure Project dialog by selecting the Configure Project
  60.     command on the Project menu.
  61. 5) Fill in the name of your target executable (this is needed for the Debug
  62.     and Test commands).
  63. 6) Choose the relevant compiler from the Environment list box, or if your
  64.     compiler is not in the list, select "Other" and then configure each of the
  65.     settings.  Use the predefined compiler, linker and builder (make program)
  66.     settings as an example, and see the online help on project variables for a
  67.     description of each setting.
  68. 7) If you require the make program (eg. nmake.exe) to be run with any
  69.     arguments, click on "BuildArgs" in the scrolling list, type the arguments
  70.     in the Setting edit field, and click Set.  Typically, you will at least
  71.     require something like "-f project.mak" (without the quotes).
  72. 8) If you want to do a debug build, check the "Debug Build" box.  This will
  73.     have the effect of adding the arguments specified against "BuildDebug" in
  74.     the scrolling list box.  If the defaults are not appropriate, change it in
  75.     the same way as "BuildArgs".
  76. 9) Close the Configure Project dialog.
  77.  
  78. Check that it all works by choosing the Build command from the Project menu.
  79. This will execute your make commands in a minimized DOS window.  The output
  80. is automatically displayed in a window if there are any errors, but you can
  81. see it anyway, after the build has completed, by selecting the View Results
  82. command on the Project menu.
  83.