home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / cnr / cdate / cdate.cpp next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  595 b   |  28 lines

  1. //************************************************************
  2. // Container Control - Dates and Times as CDATE/CTIME        
  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.  
  13. void main ()
  14. {
  15.  
  16. DeveloperList developers("Developer List");
  17.  
  18. // Show the details view.
  19. developers.container()
  20.   .showDetailsView()
  21.   .setFocus();
  22.  
  23. developers
  24.   .show();
  25.  
  26. IApplication::current().run();
  27. }
  28.