home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / INIT_A.ZIP / READ.ME < prev   
Text File  |  1991-10-21  |  4KB  |  91 lines

  1.    INTRODUCTION
  2.  
  3.    This system demonstrates the use of OS/2 Dialog Manager.  DM is a
  4.    powerful alternative to writing native PM code to support CUA (GUI)
  5.    applications of simple to moderate complexity.  There are some
  6.    significant limitations which make DM inappropriate for very complex
  7.    panels or systems.  However, for a great deal of the quickie type
  8.    systems it is uniquely suited.  Further, as this dialog demonstrates,
  9.    it has the ability to put a CUA panel in front of a REXX exec.  This
  10.    gives you a very attractive and powerful application with little more
  11.    effort than producing a DOS BATCH file.
  12.  
  13.    The DTL Markup is included.  It should be easy to expand upon if
  14.    you have the toolkit DTL compiler.
  15.  
  16.    This exec is intended primarily to be run from STARTUP.CMD.  It
  17.    display a DM panel.  This panel provides choices of the OS/2
  18.    EE Managers, which one might wish to be started at IPL time.
  19.  
  20.    If a feature will be needed EVERY time it would be better to add it
  21.    to a menu and have PM kick it off during initialization.  The
  22.    purpose here is to allow for things that you need often but not
  23.    always.
  24.  
  25.  
  26.    REQUIRED FILES & DISK SPACE
  27.  
  28.    Oddly enough the DM runtime DLL's etc. are not under a separate license.
  29.    However, IBM has not included them with the base OS/2 operating system.
  30.    Rather, these files are shipped with the OS/2 Programmer's Toolkit.
  31.    The file INIT_APP.ZIP contains all the executables and source for this
  32.    application.  If you have the toolkit or if you have already installed
  33.    a DM application, this is all you will need.  Otherwise, you must also
  34.    download INIT_DSK.ZIP.  This file should be UNZIPPED to a blank floppy.
  35.    It will install ALL files and directories so DM can be installed with
  36.    this application.  Dialog Manager will require approx. 3MB of disk to
  37.    install.
  38.  
  39.  
  40.    POTENTIALLY NECESSARY MODIFICATIONS TO .CMD FILE
  41.  
  42.    LINES 42 - 47  MAY NEED TO BE MODIFIED TO REFLECT THE INSTALLATION
  43.    PATHS FOR YOUR OS/2 SYSTEM.  THE CURRENT SETTINGS ASSUME THE BASE
  44.    OP SYS IS ON DRIVE C: WITH THE EE MANAGERS ON DRIVE E:.  ALL
  45.    DIRECTORY NAMES ARE ASSUMED TO BE THE OS/2 INSTALLATION DEFAULTS.
  46.  
  47.    IF YOU USE THE SUPPLIED INSTALL PROGRAM, OR MANUALLY COPY
  48.    THE FILES INTO THE 'C:\DMAPP' DIRECTORY, YOU SHOULD ENSURE THAT
  49.    'C:\DMAPP' IS IN YOUR PATH.  ALTERNATELY YOU MAY MOVE 'BEGIN.CMD'
  50.    TO A DIRECTORY ON YOUR PATH.  THIS IS THE ONLY FILE WHICH MUST
  51.    RESIDE IN A PATH DIRECTORY.
  52.  
  53.  
  54.    CHOOSING YOUR EDITOR
  55.  
  56.    Since everyone has his favorite editor, A command line argument
  57.    may be supplied to cause the dialog to invoke whichever one is
  58.    desired.  If one is not supplied it will default to the system
  59.    editor.
  60.  
  61.    Syntax:  PMREXX INIT <editor name>
  62.                         NOTE: full editor path must be specified if
  63.                               the editor is not in PATH env variable
  64.  
  65.  
  66.    COMMENTS
  67.  
  68.    If you find this program useful or have suggestions for its
  69.    improvement I would appreciate hearing from you.  I can be
  70.    reached on Compuserve ID 70534,377.
  71.  
  72.  
  73.    WARRANTY
  74.  
  75.    This is user supported code.  ALL source code for the system is
  76.    included.  Hopefully, the use will find this instructive in the
  77.    use of Dialog Manager; which I believe to be one of the best parts
  78.    of OS/2.  Ideally, it will also provide a useful function.  However,
  79.    no warranties are implied herein.  Stated another way:
  80.  
  81.    BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
  82.    WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
  83.    LAW. THIS PROGRAM IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  84.    KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED
  85.    TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  86.    A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
  87.    PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM
  88.    PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
  89.    REPAIR OR CORRECTION.
  90.  
  91.