-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit3.h
32 lines (31 loc) · 1014 Bytes
/
Unit3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//---------------------------------------------------------------------------
#ifndef Unit3H
#define Unit3H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "sLabel.hpp"
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TForm3 : public TForm
{
__published: // IDE-managed Components
TsLabel *sLabel1;
TsLabel *sLabel2;
TsLabel *sLabel3;
TsLabel *sLabel4;
TsWebLabel *sWebLabel1;
TLabel *Label1;
TsWebLabel *sWebLabel2;
TImage *Image1;
private: // User declarations
public: // User declarations
__fastcall TForm3(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm3 *Form3;
//---------------------------------------------------------------------------
#endif