home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / IOC / TBAR1 / README < prev    next >
Text File  |  1995-06-09  |  6KB  |  127 lines

  1. ***************************************************************************
  2. * FILE NAME: readme            (Tool Bar Sample Program)                  *
  3. *                                                                         *
  4. * COPYRIGHT: Copyright(C) International Business Machines Corp.,1992,1995.*
  5. *                                                                         *
  6. * DISCLAIMER OF WARRANTIES:                                               *
  7. *   The following [enclosed] code is sample code created by IBM           *
  8. *   Corporation.  This sample code is not part of any standard IBM product*
  9. *   and is provided to you solely for the purpose of assisting you in the *
  10. *   development of your applications.  The code is provided "AS IS",      *
  11. *   without warranty of any kind.  IBM shall not be liable for any damages*
  12. *   arising out of your use of the sample code, even if they have been    *
  13. *   advised of the possibility of such damages.                           *
  14. ***************************************************************************
  15.  
  16. TOOLBAR1
  17.  
  18.    DESCRIPTION:
  19.  
  20.         The Tool Bar Sample 1 demonstrates the toolbar, toolbar buttons,
  21.         and flyover text within a simple editor.  The tool bar buttons
  22.         appear as bitmaps, bitmaps and text, or just text.  The toolbar
  23.         itself can be positioned on the top, bottom, left, right, or as a
  24.         free floating window.  Classes used include IToolBar,
  25.         IToolBarButton, IFlyText, IFlyOverHelpHandler, and
  26.         IMultiLineEdit.
  27.  
  28.    PROJECT LOCATION:
  29.         Inside the IOC Samples folder (inside the VisualAge C++ Samples
  30.         folder).
  31.  
  32.    SOURCE FILE LOCATION:
  33.         X:\ibmcpp\samples\ioc\tbar1
  34.  
  35.         where X: is the drive you installed the samples and document
  36.         component of VisualAge C++.
  37.  
  38.    HOW TO RUN THE SAMPLE:
  39.  
  40.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  41.              To run the prebuilt project, open the Samples folder on your
  42.              OS/2 desktop then double-click on the project's icon to open
  43.              the project view of the sample.  Click on the RUN button of
  44.              the project's toolbar.
  45.  
  46.         FROM THE COMMAND LINE:
  47.              Simply type the name of the .EXE file, that is:
  48.  
  49.                  TBAR1
  50.  
  51.              If the sample fails to execute or abnormally ends, you can
  52.              get more information about the failure by turning on the
  53.              ICLUI trace.  This is done by setting the environment
  54.              variable ICLUI_TRACE as follows:
  55.  
  56.                    set ICLUI_TRACE=ON
  57.                    set ICLUI_TRACETO=STDERR
  58.  
  59.              The second export controls where the trace information is
  60.              reported.  With tracing turned on, ICLUI exception text will
  61.              be written to a standard error file. For example:
  62.  
  63.                    hello1 >hello1.out 2>&1
  64.  
  65.              The exception data is now in the file hello1.out.
  66.  
  67.    HOW TO BUILD THE SAMPLE PROJECT YOURSELF:
  68.  
  69.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  70.              Open the Samples folder on your OS/2 desktop then
  71.              double-click on the project's icon to open the project view
  72.              of the sample. In the upper half of the project window you
  73.              will see the icons of the files associated with the sample.
  74.              From the Project pulldown, select Build -> Rebuild All. To run
  75.              the sample project, see HOW TO RUN THE SAMPLE PROJECT above.
  76.  
  77.         FROM THE COMMAND LINE:
  78.            -  A command file is provided to allow rebuilding of the
  79.              WorkFrame projects from the command line.  Simply type:
  80.  
  81.                  BUILD
  82.  
  83.              To run the sample project, see HOW TO RUN THE SAMPLE PROJECT 
  84.              above.
  85.  
  86.            - The sample application can also be built by entering:
  87.                  NMAKE
  88.              with no options while in the directory containing the
  89.              sample application files.  The makefile is named
  90.                  Makefile
  91.              To clean up the files generated from running make, enter:
  92.                  NMAKE CLEAN 
  93.              while in the directory containing the sample program files. 
  94.  
  95.    SOFTWARE/HARDWARE PREREQUISITES:
  96.  
  97.         o   IBM VisualAge C++
  98.         o   OS/2 2.1 or Warp
  99.         o   IBM or compatible 386 and up.
  100.  
  101.    ADDITIONAL INFORMATION:
  102.  
  103.         o   For more information on the creation and use of projects in
  104.             the WorkFrame environment, see the VisualAge C++ for OS/2
  105.             User's Guide.
  106.         o   For more information on the User Interface Classes, see the
  107.             VisualAge C++ for OS/2 Open Class Library User's Guide.
  108.  
  109.         Both books can be found online.  To access an online book, simply
  110.         open the main VisualAge C++ desktop folder, then open the
  111.         Information Folder inside.  To view a book, double-click on that
  112.         book's icon.
  113.  
  114.  
  115.  
  116.  REQUIRED FILES - TBAR1:
  117.                                                       
  118.    README       - Instructions for using this sample program             
  119.    tbar1.cpp    - Source code for main() and Editor class                
  120.    tbar1.hpp    - Class header file for Editor class                     
  121.    tbar1.h      - Symbolic definition file                               
  122.    tbar1.rc     - OS/2 PM resource file                                  
  123.    tbar1.ico    - OS/2 icon file                                         
  124.    Makefile     - Make file to build the sample program                  
  125.    toolbar.not  - note file loaded by the sample program on OS/2         
  126.  
  127.