mmsstv/CItems/PERIMG/About.cpp

34 lines
782 B
C++
Raw Permalink Normal View History

2013-07-05 22:15:14 +02:00
//---------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "About.h"
#include "ComLib.h"
//---------------------------------------------------------------------
#pragma resource "*.dfm"
//TAboutDlg *AboutDlg;
#if UseHWND
__fastcall TAboutDlg::TAboutDlg(HWND hWnd)
: TForm(hWnd)
#else
__fastcall TAboutDlg::TAboutDlg(TComponent* AOwner)
: TForm(AOwner)
#endif
{
if( sys.m_MsgEng ){
Font->Name = "Arial";
Font->Charset = ANSI_CHARSET;
Caption = TTL;
}
else {
Caption = TTLJ;
}
LVer->Caption = VER" "AUT;
HICON hIcon = ::LoadIcon(HInstance, (LPCSTR)8000);
TIcon *pIcon = new TIcon;
pIcon->Handle = hIcon;
Image->Picture->Icon = pIcon;
}
//---------------------------------------------------------------------