home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / tt2prd.zip / readme.us < prev    next >
Text File  |  1994-02-07  |  7KB  |  179 lines

  1. TalkThru for OS/2 --  Version 2.3
  2.  
  3. This document contains release notes for version 2.3 of
  4. TalkThru for OS/2.
  5.  
  6. ---------------------------------------------------------------------------
  7.  
  8. Version 2.3 Highlights:
  9.  
  10. o       TN3270
  11.  
  12.         A TN3270 Terminal protocol has been added to the product.
  13.         Refer to the separate documentation for more details.
  14.  
  15. o       Printing
  16.  
  17.         Print destination can be set on a session by session basis.
  18.         It can also be changed by AUTOPILOT or EHLLAPI.
  19.  
  20.         A C example of this would be:
  21.  
  22.         USHORT CLimFunction = PCB_SEND_KEY;
  23.         USHORT Size = 33;
  24.         USHORT ReturnCode = 0;
  25.  
  26.         hllapi(&ClimFunction, "@@TALKTHRU SET_LOCAL_PRINTER LPT3",
  27.                          &Size, &ReturnCode);
  28.  
  29.  
  30.         An AUTOPILOT example of this would be:
  31.  
  32.         send "@@TALKTHRU SET_LOCAL_PRINTER LPT3"
  33.  
  34.  
  35. o       Capture
  36.  
  37.         The Terminal Capture facility has been modified to write
  38.         its internal buffer more often.  This makes it easier to direct
  39.         capture output to an OS/2 pipe.
  40.  
  41. o       EHLLAPI
  42.  
  43.         A TalkThru specific extended call has been added to EHLLAPI to
  44.         retrieve Terminal Button Bar information.
  45.  
  46.         EHLLAPI function call number 5011 ...
  47.  
  48.         In the samples directory, there is a program that will
  49.         demonstrate the new EHLLAPI Button call. The program is
  50.         TEST5011. The source code and make file for this program
  51.         are also supplied.
  52.  
  53.  
  54.         Support for the undocumented Query Extended Status option
  55.         of EHLLAPI function 104 (PM Window Status) has been added.
  56.         This option is used by the CMMouse product.
  57.  
  58.         Refer to separate documentation for more information.
  59.  
  60. o       Carrier status  on direct connections
  61.  
  62.         An option has been added to the device configuration dialog
  63.         that enables the emulator's connect/disconnect status to
  64.         reflect the state of carrier in direct connections.  The
  65.         default is to ignore carrier in direct connections.
  66.  
  67.  
  68. ---------------------------------------------------------------------------
  69.  
  70. Version 2.2 Highlights:
  71.  
  72. o       Terminal Emulation Performance Improvements
  73.  
  74.         Terminal sessions with high speed connections (TCP/IP, NetBIOS,
  75.         fast modems)  can display  nonscrolling data 2 to 8 times
  76.         fasterthan previous releases.  Actual speed improvements
  77.         depend on the terminal protocol, displayed data format,
  78.         CPU speed, and speed of the connection.
  79.  
  80. o       Review Window
  81.  
  82.         A Review Window has been added.  The Review  Window displays
  83.         text that has scrolled off the top of the terminal screen.
  84.         The window will display the text in the same format  (color,
  85.         font, etc.) as it appeared in the terminal window. Up to 100
  86.         pages of text may be retained. Selected text may be copied
  87.         from the Review Window to a file, printer or clipboard.
  88.  
  89. o       DDE Support
  90.  
  91.         Dynamic Data Exchange (DDE) is a standardized protocol for
  92.         exchanging data and commands between applications running
  93.         under Presentation Manager and/or Windows.  TalkThru supports
  94.         DDE as both a client and a server using commands in the
  95.         AUTOPILOT script language.
  96.  
  97. o       REXX Support
  98.  
  99.         An EHLLAPI interface for REXX has been added that is
  100.         compatible with IBM's Communications Manager's SAAHLAPI
  101.         interface.  In the SAMPLES directory, there is a REXX
  102.         command REXXHLPI.CMD that will allow you to see how EHLLAPI
  103.         calls can be made in REXX programs.  You may also directly
  104.         call REXX programs from the Phone Book or Terminal Emulator.
  105.  
  106. o       ZMODEM Restart
  107.  
  108.         Support for the ZMODEM automatic transfer restart facility
  109.         has been added.
  110.  
  111. o       CID Enabled Installation
  112.  
  113.         TalkThru's installation has been CID enabled.  Configuration,
  114.         Installation and Distribution or CID is a term used to
  115.         describe the enabling of OS/2 based products to be installed
  116.         and configured in a LAN environment with little or no user
  117.         interaction.
  118.  
  119. o       AUTOPILOT Enhancements
  120.  
  121.         In addition to DDE (mentioned above),  AUTOPILOT has been
  122.         enhanced to support larger arrays ,icon button controls, and
  123.         user/system/3rd party written DLLs.
  124.  
  125. o       Modem Support
  126.  
  127.         The list of directly supported modems has been greatly
  128.         increased. In addition, modem configuration can now be
  129.         done at installation time.
  130.  
  131. ---------------------------------------------------------------------------
  132.  
  133. AUTOPILOT WRITE Statement Enhancement
  134.  
  135. The AUTOPILOT WRITE statement has been enhanced to allow the option
  136. of writing the internal buffer to the file/device after each WRITE
  137. statement (the default is to write when the internal buffer is filled
  138. or when the file is closed).
  139.  
  140. This feature makes it easier to use AUTOPILOT I/O with OS/2 pipes
  141. and devices such as COMx.
  142.  
  143. To enable "writethru" mode, use the optional USING clause
  144. in the OPEN statement:
  145.  
  146.         OPEN <filespec> FOR <mode> [USING <options>] AS <filenum>
  147.  
  148.         where <options> may be:
  149.  
  150.         "writethru=y" -- Write to device after each WRITE statement.
  151.  
  152.         "writethru=n" -- Write to device when internal buffer is filled.
  153.  
  154. The default is "writethru=n".  When "writethru=y" is specified,
  155. file output will be slower.
  156.  
  157. ---------------------------------------------------------------------------
  158.  
  159. Instructions for using CMMouse with TalkThru
  160.  
  161.    CMMouse will coexist with TalkThru only if the following rules
  162.    are applied:
  163.  
  164. 1. TalkThru must be brought up before CMMouse. If CMMouse is brought
  165.    up first and then TalkThru is asked to be loaded, you will receive
  166.    a TalkThru '0002 Controller Application Error' and TalkThru will
  167.    not load. (If TalkThru and CMMouse are started in the STARTUP.CMD
  168.    file make sure TalkThru is completely up before running CMMouse).
  169.  
  170. 2. TalkThru sessions can be either closed or opened (windowed or iconized)
  171.    when CMMouse is started.  If TalkThru EHLLAPI sessions are only created
  172.    CMMouse will fail with an Initialization error on the Window Handle.
  173.  
  174. 3. CMMouse MUST be taken down BEFORE TalkThru. TalkThru will not
  175.    unload unless this is done because CMMouse is using the TalkThru
  176.    EHLLAPI DLL.
  177.  
  178.  
  179.