-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSellObject.h
More file actions
37 lines (36 loc) · 1.13 KB
/
SellObject.h
File metadata and controls
37 lines (36 loc) · 1.13 KB
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
33
34
35
36
37
//---------------------------------------------------------------------------
#ifndef SellObjectH
#define SellObjectH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TSellObjectForm : public TForm
{
__published: // IDE-managed Components
TComboBox *ComboBox1;
TEdit *Edit1;
TEdit *Edit2;
TEdit *Edit3;
TEdit *Edit4;
TEdit *Edit5;
TEdit *Edit6;
TEdit *Edit7;
TEdit *Edit8;
TButton *Button1;
TButton *Button2;
TComboBox *ComboBox2;
TComboBox *ComboBox3;
TMemo *Memo1;
void __fastcall Button2Click(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TSellObjectForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSellObjectForm *SellObjectForm;
//---------------------------------------------------------------------------
#endif