home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
-
- #include "about.h"
- //---------------------------------------------------------------------
- #pragma resource "*.dfm"
- TAboutBox *AboutBox;
- //---------------------------------------------------------------------
- __fastcall TAboutBox::TAboutBox(TComponent* AOwner)
- : TForm(AOwner)
- {
- option = false;
- }
- //---------------------------------------------------------------------
- void __fastcall TAboutBox::OKButtonClick(TObject *Sender)
- {
- Close();
- }
- //---------------------------------------------------------------------------
- void __fastcall TAboutBox::ProgramIconDblClick(TObject *Sender)
- {
- option = true;
- }
- //---------------------------------------------------------------------------
-
- void __fastcall TAboutBox::Label1DblClick(TObject *Sender)
- {
- if (option) Label1->Hide();
- }
- //---------------------------------------------------------------------------
-
-