home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / cnr / uidate / uidate.cpp < prev    next >
Text File  |  1996-10-29  |  583b  |  27 lines

  1. //************************************************************
  2. // Container Control - Dates and Times as IDate/ITime        
  3. //
  4. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. // All Rights Reserved.
  7. //************************************************************
  8. #include <iapp.hpp>
  9. #include "developr.hpp"
  10.  
  11.  
  12. void main ()
  13. {
  14.  
  15. DeveloperList developers("Developer List");
  16.  
  17. // Details view
  18. developers.container()
  19.   .showDetailsView()
  20.   .setFocus();
  21.  
  22. developers
  23.   .show();
  24.  
  25. IApplication::current().run();
  26. }
  27.