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

  1. **********************************************************************
  2. * Direct Manipulation Sample 4 - Readme file                                   *
  3. *                                                                              *
  4. * COPYRIGHT:                                                                   *
  5. *   IBM Open Class Library                                                     *
  6. *   (C) Copyright International Business Machines Corporation 1992, 1995       *
  7. *   Licensed Material - Program-Property of IBM - All Rights Reserved.         *
  8. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  9. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  10. *                                                                              *
  11. * DISCLAIMER OF WARRANTIES:                                                    *
  12. *   The following [enclosed] code is sample code created by IBM                *
  13. *   Corporation.  This sample code is not part of any standard IBM product     *
  14. *   and is provided to you solely for the purpose of assisting you in the      *
  15. *   development of your applications.  The code is provided "AS IS",           *
  16. *   without warranty of any kind.  IBM shall not be liable for any damages     *
  17. *   arising out of your use of the sample code, even if they have been         *
  18. *   advised of the possibility of such damages.                                *
  19. *************************************************************************
  20.  
  21. DRAG4
  22.  
  23.    DESCRIPTION:
  24.  
  25.         The Direct Manipulation Sample 4 demonstrates dragging container
  26.         objects across applications running in separate processes (ie.
  27.         separate executables).  By starting the sample application twice,
  28.         you can drag and drop objects to these separately running
  29.         applications.  Classed used include IDMCnrItem,
  30.         IDMSourceOperation, IDMTargetOperation, IDMTargetDropEvent,
  31.         IDMItemProviderFor, IDMHandler, IContainerControl, and
  32.         IContainerObject.
  33.  
  34.  
  35.    PROJECT LOCATION:
  36.         Inside the IOC Samples folder (inside the VisualAge C++ Samples
  37.         folder). 
  38.  
  39.    SOURCE FILE LOCATION:
  40.         X:\ibmcpp\samples\ioc\drag4
  41.  
  42.         where X: is the drive you installed the samples and document
  43.         component of VisualAge C++.
  44.  
  45.    HOW TO RUN THE SAMPLE:
  46.  
  47.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  48.              To run the prebuilt project, open the Samples folder on your
  49.              OS/2 desktop then double-click on the project's icon to open
  50.              the project view of the sample.  Click on the RUN button of
  51.              the project's toolbar.
  52.  
  53.         FROM THE COMMAND LINE:
  54.              Simply type the name of the .EXE file, that is:
  55.  
  56.                  DRAG4
  57.  
  58.              If the sample fails to execute or abnormally ends, you can
  59.              get more information about the failure by turning on the
  60.              ICLUI trace.  This is done by setting the environment
  61.              variable ICLUI_TRACE as follows:
  62.  
  63.                    set ICLUI_TRACE=ON
  64.                    set ICLUI_TRACETO=STDERR
  65.  
  66.              The second export controls where the trace information is
  67.              reported.  With tracing turned on, ICLUI exception text will
  68.              be written to a standard error file. For example:
  69.  
  70.                    hello1 >hello1.out 2>&1
  71.  
  72.              The exception data is now in the file hello1.out.
  73.  
  74.    HOW TO BUILD THE SAMPLE PROJECT YOURSELF:
  75.  
  76.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  77.              Open the Samples folder on your OS/2 desktop then
  78.              double-click on the project's icon to open the project view
  79.              of the sample. In the upper half of the project window you
  80.              will see the icons of the files associated with the sample.
  81.              From the Project pulldown, select Build -> Rebuild All.  To run
  82.              the sample project, see HOW TO RUN THE SAMPLE PROJECT above.
  83.  
  84.         FROM THE COMMAND LINE:
  85.            - A command file is provided to allow rebuilding of the
  86.              WorkFrame projects from the command line.  Simply type:
  87.  
  88.                  BUILD
  89.  
  90.              To run the sample project, see HOW TO RUN THE SAMPLE PROJECT 
  91.              above.
  92.  
  93.            - The sample application can also be built by entering:
  94.                  NMAKE
  95.              with no options while in the directory containing the
  96.              sample application files.  The makefile is named
  97.                  Makefile
  98.              To clean up the files generated from running make, enter:
  99.                  NMAKE CLEAN 
  100.              while in the directory containing the sample program files. 
  101.  
  102.    SOFTWARE/HARDWARE PREREQUISITES:
  103.  
  104.         o   IBM VisualAge C++
  105.         o   OS/2 2.1 or Warp
  106.         o   IBM or compatible 386 and up.
  107.  
  108.    ADDITIONAL INFORMATION:
  109.  
  110.         o   For more information on the creation and use of projects in
  111.             the WorkFrame environment, see the VisualAge C++ for OS/2
  112.             User's Guide.
  113.         o   For more information on the UserInterface Classes, see the
  114.             VisualAge C++ for OS/2 Open Class Library User's Guide.
  115.  
  116.         Both books can be found online.  To access an online book, simply
  117.         open the main VisualAge C++ desktop folder, then open the
  118.         Information Folder inside.  To view a book, double-click on that
  119.         book's icon.
  120.  
  121.  
  122.  
  123.    REQUIRED FILES - DRAG4:
  124.  
  125.    README
  126.         description and instructions for sample
  127.  
  128.    BUILD.CMD
  129.         command file to build in project form from the command line
  130.  
  131.    DRAG4.EXE
  132.         sample's executable
  133.  
  134.    DMSAMP4.CPP
  135.         C++ source code for DRAG4
  136.  
  137.    DMSAMP4.HPP
  138.         class definition for DRAG4
  139.  
  140.    DMSAMP4.H
  141.         symbolic definition for DRAG4
  142.    DSAMP4.RC
  143.         resource file
  144.  
  145.    APPLE.ICO        
  146.    BOLT.ICO
  147.    CAR.ICO
  148.    DMSAMP4.ICO
  149.    SPACE.ICO
  150.    STARFLEE.ICO
  151.    WIN100.ICO
  152.         icon files
  153.  
  154.    MAKEFILE
  155.         make file to build the sample program