home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / advframe / drawextn / drawextn.cpp next >
C/C++ Source or Header  |  1996-10-29  |  477b  |  18 lines

  1. //************************************************************
  2. // Advanced Frame - Frame Extension Drawing Example
  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 "myframe.hpp"
  9.  
  10. void main()
  11.   {
  12.   MyFrame
  13.     frame;
  14.   frame.setFocus();
  15.   frame.update().show().refresh();
  16.   IApplication::current().run();
  17.   }
  18.