about.cpp
资源名称:cd_man.zip [点击查看]
上传用户:deyixm
上传日期:2007-01-06
资源大小:43k
文件大小:1k
源码类别:
行业应用
开发平台:
Visual C++
- //---------------------------------------------------------------------
- #include <vcl.h>
- #include <shellapi.h>
- #pragma hdrstop
- #include "about.h"
- //---------------------------------------------------------------------
- #pragma resource "*.dfm"
- TAboutBox *AboutBox;
- //---------------------------------------------------------------------
- __fastcall TAboutBox::TAboutBox(TComponent* AOwner)
- : TForm(AOwner)
- {
- }
- //---------------------------------------------------------------------
- void __fastcall TAboutBox::OKButtonClick(TObject *Sender)
- {
- Close();
- }
- //---------------------------------------------------------------------------