uabout.cpp
来自「读取QQ IP数据库(QQWry.dat)文件格式」· C++ 代码 · 共 37 行
CPP
37 行
//---------------------------------------------------------------------------
// 关于对话框 - About Form v0.2
// by ccrun(老妖) - info@ccrun.com
// Last modify: 2005.3.28
//---------------------------------------------------------------------------
// Welcome C++Builder Study - http://www.ccrun.com
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "uAbout.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TfrmAbout *frmAbout;
//---------------------------------------------------------------------------
__fastcall TfrmAbout::TfrmAbout(TComponent* Owner)
: TForm(Owner)
{
imgProgIcon->Picture->Assign(Application->Icon);
}
//---------------------------------------------------------------------------
// 63 63 72 75 6E 2E 63 6F 6D
void __fastcall TfrmAbout::lblWebClick(TObject *Sender)
{
ShellExecute(Handle, "Open", lblWeb->Caption.c_str(), NULL, NULL, SW_SHOW);
}
//---------------------------------------------------------------------------
void __fastcall TfrmAbout::lblMailClick(TObject *Sender)
{
ShellExecute(Handle, "Open",
(lblMail->Caption + "?subject=About:" + lblProgName->Caption).c_str(),
NULL, NULL, SW_SHOW);
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?