//--------------------------------------------------------------------------- #include #pragma hdrstop #include "Unit1.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TForm1 *Form1; //--------------------------------------------------------------------------- __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TForm1::Timer1Timer(TObject *Sender) { Panel1->Caption=Now().DateString() + "/" + Now().TimeString(); } //--------------------------------------------------------------------------- void __fastcall TForm1::Button1MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { if (X<= 10) Button1->Left=Button1->Left+5; if (X>= 100) Button1->Left=Button1->Left-5; if (Y<= 10) Button1->Top=Button1->Top+5; if (Y>= 10) Button1->Top=Button1->Top-5; } //---------------------------------------------------------------------------