home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: InfoMgt / InfoMgt.zip / shr93.zip / SHR93.ABS < prev    next >
Text File  |  1993-04-12  |  1KB  |  25 lines

  1. SHARE Europe '93                                           04/12/93
  2.  
  3.          OS/2 Work Place Shell Sample Program - Address Book
  4.  
  5.                          Dan Kehn (74140,3263)
  6.  
  7.   This example implements a simple address book.  An address book 
  8.   contains "people" who have names, addresses, phone numbers, etc.  
  9.  
  10.   The address book is implemented as a subclass of the WPS folder 
  11.   class, WPFolder.  Subclassing WPFolder has the advantage of 
  12.   inheriting standard folder behavior, especially the Icon, 
  13.   Settings, and Details view.  The address book adds an additional
  14.   view, "Indexed View", which is an alphabetically-tabbed view of
  15.   the persons within the address book.
  16.  
  17.   The person object contained within the address book is 
  18.   implemented as a subclass of WPAbstract.  Subclassing WPAbstract 
  19.   has the advantage of inheriting base WPS object behavior like 
  20.   drag/drop, pop-up menu, and the Settings view.  The person 
  21.   class adds an additional "Info" page to the Settings view where
  22.   the user can change an address, phone number, etc.
  23.  
  24.   See the README.TXT file for more details.
  25.