Syncing uppdev

git-svn-id: svn://ultimatepp.org/upp/trunk@1638 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-10-19 17:11:45 +00:00
parent 981a9f538f
commit cf65371d93
5 changed files with 37 additions and 5 deletions

View file

@ -0,0 +1,9 @@
uses
CtrlLib;
file
main.cpp;
mainconfig
"" = "GUI";

13
uppdev/DropTime/main.cpp Normal file
View file

@ -0,0 +1,13 @@
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
TopWindow win;
DropTime tm;
tm.Min(GetSysTime() - 10000).Max(GetSysTime() + 10000);
win.Add(tm.HSizePos().TopPos(10, Ctrl::STDSIZE));
win.Run();
}