1 //----------------------------------------------------------------------------
2 #ifndef UAboutH
3 #define UAboutH
4 //----------------------------------------------------------------------------
5 #include <vcl\System.hpp>
6 #include <vcl\Windows.hpp>
7 #include <vcl\SysUtils.hpp>
8 #include <vcl\Classes.hpp>
9 #include <vcl\Graphics.hpp>
10 #include <vcl\Forms.hpp>
11 #include <vcl\Controls.hpp>
12 #include <vcl\StdCtrls.hpp>
13 #include <vcl\Buttons.hpp>
14 #include <vcl\ExtCtrls.hpp>
15 #include <jpeg.hpp>
16 //----------------------------------------------------------------------------
17 class TfrmAbout : public TForm
18 {
19 __published:
20 	TPanel *Panel1;
21 	TImage *ProgramIcon;
22 	TLabel *ProductName;
23 	TLabel *Version;
24 	TButton *OKButton;
25         TLabel *Label1;
26 private:
27 public:
28 	virtual __fastcall TfrmAbout(TComponent* AOwner);
29 };
30 //----------------------------------------------------------------------------
31 extern PACKAGE TfrmAbout *frmAbout;
32 //----------------------------------------------------------------------------
33 #endif
34