
     {*******************************************************************}
     {*                          TWOBRWIN.PAS                           *}
     {*                    Version 1.00 January 1993                    *}
     {*              Copyright (c) 1993 TurboPower Software             *}
     {*                                                                 *}
     {*                         By Lee Inman,                           *}
     {*                      TurboPower Software                        *}
     {*******************************************************************}

  TWOBRWIN -- a demonstration program for multiple windows browser objects
  and B-Tree Filer using the Windows Multiple Document Interface and
  Object Windows Library.

  This demo consists of the following files:

     twobrwin.pas   The main program
     brwincus.pas   Unit to implement the customer child window and browser
     brwinord.pas   Unit to implement the order child window and browser
     brwindat.pas   Common data declarations
     brwinutl.pas   General utilities and file functions
     twobrwin.res   Resource file

  If you wish to compile this demo you will need B-Tree Filer version 5.40

  TWOBRWIN contains no sample data files. You can use the add record menu
  option to add customers and related orders or you can select the
  Generate Random Data menu option. The random method is much faster and
  you can create a sizeable data file (for testing) fairly quickly.

  To navigate through the records you create, use the mouse to select the
  window and record or press the Tab key to toggle the focus between the
  two windows and use the cursor keys to highlight the appropriate record.
  Double-Clicking on a record or pressing return invokes the edit dialog
  for that record. You can enable a filter for the data records shown in
  the order window. The filter is setup to show only the records with
  balances less than $1000.00.

  MDI is probably not the best choice for this type of application because
  child windows are normally allowed to close independently and allowing
  one of the windows to close would destroy the link between the two browsers.
  The close option has been removed from the system menu of the two child
  windows in this demo to prevent this.

  See the file WBROWSER.DOC for complete information about the Windows
  file browser for B-Tree Filer.

