home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / drag3 / readme.txt < prev    next >
Encoding:
Text File  |  1996-02-22  |  2.9 KB  |  80 lines

  1. **********************************************************************
  2. * DISCLAIMER OF WARRANTIES:                                          *
  3. *                                                                    *
  4. * The following enclosed code is sample code created by IBM          *
  5. * Corporation.  This sample code is not part of any standard IBM     *
  6. * product and is provided to you solely for the purpose of assisting *
  7. * you in the development of your applications.  The code is provided *
  8. * "AS IS", without warranty of any kind.  IBM shall not be liable    *
  9. * for any damages arising out of your use of the sample code, even   *
  10. * if they have been advised of the possibility of such damages       *
  11. *                                                                    *
  12. **********************************************************************
  13.  
  14. Direct Manipulation Sample 3
  15.  
  16.   DESCRIPTION:
  17.     The Direct Manipulation Sample 3 
  18.     demonstrates dragging container objects 
  19.     from a source window to a target window.  
  20.     The application takes advantage of 
  21.     overriding the IContainerObject::objectCopy() 
  22.     function.  Classed used included IDMHandler,
  23.     IContainerControl, and IContainerObject. 
  24.  
  25.   CONCEPT/FEATURE:
  26.     Sample program for demonstrates direct
  27.     manipulation between two container controls
  28.     in the same process.
  29.  
  30.   HOW TO BUILD THE PROJECT FROM THE COMMAND LINE:
  31.     From within the directory containing the sample, simply type:
  32.          NMAKE
  33.  
  34.   HOW TO BUILD THE PROJECT FROM WITHIN THE WORKFRAME ENVIRONMENT:
  35.     Refer to the standard Workframe BUILD instructions
  36.  
  37.   HOW TO RUN THE PROJECT FROM THE COMMAND LINE:
  38.     From within the directory containing the sample, simply type
  39.     the name of the executable:
  40.          DRAG3
  41.  
  42.   HOW TO RUN THE PROJECT FROM WITHIN THE WORKFRAME ENVIRONMENT:
  43.     Refer to the standard Workframe RUN instructions
  44.  
  45.   SPECIAL NOTES:
  46.     If the sample fails to execute or 
  47.     abnormally ends, you can get 
  48.     more information about the failure 
  49.     by turning on the ICLUI trace.  
  50.     This is done by setting the 
  51.     environment variable ICLUI_TRACE 
  52.     as follows: 
  53.  
  54.         set ICLUI_TRACE=ON
  55.         set ICLUI_TRACETO=STDERR
  56.     
  57.     ICLUI_TRACETO controls where
  58.     the trace information is reported. 
  59.     With tracing turned on, ICLUI 
  60.     exception text will be written to a 
  61.     standard error file. For example: 
  62.  
  63.         sample >sample.out 2>&1
  64.     
  65.     The exception data is now in the file 
  66.     'sample.out'.
  67.  
  68.   ADDITIONAL HARDWARE/SOFTWARE REQUIREMENTS:
  69.     None
  70.  
  71.   VISUALAGE FOR C++ SAMPLES INFORMATION:
  72.     A complete listing of samples shipped with the VisualAge for C++
  73.     product can be found in the online GUIDE TO SAMPLES.  To access
  74.     this notebook, simply:
  75.  
  76.     -  Open the VISUALAGE FOR C++ program group in the Program
  77.        Manager window, then
  78.     -  Open the GUIDE TO SAMPLES notebook in the program group.
  79.  
  80.