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

  1. ******************************************************************************
  2. * Canvas Classes Example 1 - Split Canvas Readme                             *
  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. * NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  16.  
  17. SPLIT CANVAS
  18.  
  19.    DESCRIPTION:
  20.  
  21.         The Split Canvas Sample demonstrates vertical and horizontal
  22.         split canvases.  These split canvas can be sized by the user to
  23.         see more or less of an area.  Classed used include ISplitCanvas
  24.         and IStaticText.
  25.  
  26.    CONCEPT/FEATURE:
  27.         Key functions include:
  28.         - create a main window
  29.         - run the current application
  30.         - create horizontal and vertical split canvases
  31.         - create static text controls
  32.         - load strings from resource bound to the executable
  33.  
  34.    PROJECT LOCATION:
  35.         Inside the IOC Samples folder (inside the VisualAge C++ Samples
  36.         folder)
  37.  
  38.    SOURCE FILE LOCATION:
  39.         X:\ibmcpp\samples\ioc\splitcv
  40.  
  41.         where X: is the drive you installed the samples and document
  42.         component of VisualAge C++.
  43.  
  44.    HOW TO RUN THE SAMPLE:
  45.  
  46.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  47.              To run the prebuilt project, open the Samples folder on your
  48.              OS/2 desktop then double-click on the project's icon to open
  49.              the project view of the sample.  Click on the RUN button of
  50.              the project's toolbar.
  51.  
  52.         FROM THE COMMAND LINE:
  53.              Simply type the name of the .EXE file, that is:
  54.  
  55.                  SPLITCV
  56.  
  57.              If the sample fails to execute or abnormally ends, you can
  58.              get more information about the failure by turning on the
  59.              ICLUI trace.  This is done by setting the environment
  60.              variable ICLUI_TRACE as follows:
  61.  
  62.                    set ICLUI_TRACE=ON
  63.                    set ICLUI_TRACETO=STDERR
  64.  
  65.              The second export controls where the trace information is
  66.              reported.  With tracing turned on, ICLUI exception text will
  67.              be written to a standard error file. For example:
  68.  
  69.                    hello1 >hello1.out 2>&1
  70.  
  71.              The exception data is now in the file hello1.out.
  72.  
  73.    HOW TO BUILD THE SAMPLE PROJECT YOURSELF:
  74.  
  75.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  76.              Open the Samples folder on your OS/2 desktop then
  77.              double-click on the project's icon to open the project view
  78.              of the sample. In the upper half of the project window you
  79.              will see the icons of the files associated with the sample.
  80.              From the Project pulldown, select Build -> Rebuild All.  To run
  81.              the sample project, see HOW TO RUN THE SAMPLE PROJECT above.
  82.  
  83.         FROM THE COMMAND LINE:
  84.            - A command file is provided to allow rebuilding of the
  85.              WorkFrame projects from the command line.  Simply type:
  86.  
  87.                  BUILD
  88.  
  89.              To run the sample project, see HOW TO RUN THE SAMPLE PROJECT 
  90.              above.
  91.  
  92.            - The sample application can also be built by entering:
  93.                  NMAKE
  94.              with no options while in the directory containing the
  95.              sample application files.  The makefile is named
  96.                  Makefile
  97.              To clean up the files generated from running make, enter:
  98.                  NMAKE CLEAN 
  99.              while in the directory containing the sample program files. 
  100.  
  101.    SOFTWARE/HARDWARE PREREQUISITES:
  102.  
  103.         o   IBM VisualAge C++
  104.         o   OS/2 2.1 or Warp
  105.         o   IBM or compatible 386 and up.
  106.  
  107.    ADDITIONAL INFORMATION:
  108.  
  109.         o   For more information on the creation and use of projects in
  110.             the WorkFrame environment, see the VisualAge C++ for OS/2
  111.             User's Guide.
  112.         o   For more information on the User Interface Classes, see the
  113.             VisualAge C++ for OS/2 Open Class Library User's Guide.
  114.  
  115.         Both books can be found online.  To access an online book, simply
  116.         open the main VisualAge C++ desktop folder, then open the
  117.         Information Folder inside.  To view a book, double-click on that
  118.         book's icon.
  119.  
  120.  
  121.  
  122.   REQUIRED FILES:
  123.                                                            *
  124.    README         - Readme file for SPLITCV                              
  125.    asplitcv.cpp   - Source code for SPLITCV                              
  126.    asplitcv.hpp   - Class header file form SPLITCV                       
  127.    asplitcv.h     - Defines for SPLITCV                                  
  128.    asplitcv.rc    - Resource File for SPLITCV                            
  129.    asplitcv.ico   - OS/2 icon file                                       
  130.    Makefile       - Make file to build the sample program                
  131.  
  132.  
  133.