about.cpp
上传用户:deyixm
上传日期:2007-01-06
资源大小:43k
文件大小:1k
源码类别:

行业应用

开发平台:

Visual C++

  1. //---------------------------------------------------------------------
  2. #include <vcl.h>
  3. #include <shellapi.h>
  4. #pragma hdrstop
  5. #include "about.h"
  6. //--------------------------------------------------------------------- 
  7. #pragma resource "*.dfm"
  8. TAboutBox *AboutBox;
  9. //--------------------------------------------------------------------- 
  10. __fastcall TAboutBox::TAboutBox(TComponent* AOwner)
  11. : TForm(AOwner)
  12. {
  13. }
  14. //---------------------------------------------------------------------
  15. void __fastcall TAboutBox::OKButtonClick(TObject *Sender)
  16. {
  17.  Close();
  18. }
  19. //---------------------------------------------------------------------------