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

  1. ***************************************************************************
  2. * FILE NAME: readme            (Notebook 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. NOTEBOOK
  17.  
  18.    DESCRIPTION:
  19.  
  20.         The notebook sample demonstrates the use of INotebook class by
  21.         placing four bitmap controls on separate notebook pages.  The
  22.         notebook page tabs show a miniture version of each bitmap while
  23.         each page shows the full size image.  Because the bitmaps are
  24.         placed in IViewport objects, you can scroll both horizontically
  25.         and vertically whenever the bitmap does not fit.
  26.  
  27.    PROJECT LOCATION:
  28.         Inside the IOC Samples folder (inside the VisualAge C++ Samples
  29.         folder).
  30.  
  31.  
  32.    SOURCE FILE LOCATION:
  33.         X:\ibmcpp\samples\ioc\notebook
  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.                  NOTEBOOK
  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.  REQUIRED FILES - NOTEBOOK: 
  116.                                                      *
  117.    README       - Instructions for using this sample program             
  118.    notebook.cpp - Source code for main() and ABitmapNotebook class       
  119.    notebook.hpp - Class header file for ABitmapNotebook class            
  120.    notebook.h   - Symbolic definition file                               
  121.    notebook.rc  - OS/2 PM resource file                                  
  122.    notebook.ico - OS/2 icon file                                         
  123.    Makefile     - Make file to build the sample program                  
  124.