home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power GUI Programming with VisualAge C++
/
powergui.iso
/
powergui
/
cnr
/
uidate
/
uidate.cpp
< prev
next >
Wrap
Text File
|
1996-10-29
|
583b
|
27 lines
//************************************************************
// Container Control - Dates and Times as IDate/ITime
//
// Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
// Copyright (c) 1997 John Wiley & Sons, Inc.
// All Rights Reserved.
//************************************************************
#include <iapp.hpp>
#include "developr.hpp"
void main ()
{
DeveloperList developers("Developer List");
// Details view
developers.container()
.showDetailsView()
.setFocus();
developers
.show();
IApplication::current().run();
}