-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfRECEPETION.cpp
More file actions
66 lines (52 loc) · 1.38 KB
/
fRECEPETION.cpp
File metadata and controls
66 lines (52 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "fRECEPETION.h"
#include "FP_DETAILS.h"
#include "F_DM.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm3 *Form3;
//---------------------------------------------------------------------------
__fastcall TForm3::TForm3(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm3::SpeedButton5Click(TObject *Sender)
{
DM->QSTATUS->Close();
DM->QSTATUS->Open();
DM->QINTERMEDIARY->Close();
DM->QINTERMEDIARY->Open();
DM->QDENTITIES->Close();
DM->QDENTITIES->Open();
DM->QSOLUTION->Close();
DM->QSOLUTION->Open();
Form12->ShowModal();
}
//---------------------------------------------------------------------------
void __fastcall TForm3::SpeedButton2Click(TObject *Sender)
{
Edit1->Clear();
Edit2->Clear();
Edit3->Clear();
Edit9->Clear();
Edit10->Clear();
Edit11->Clear();
Edit12->Clear();
Edit14->Clear();
Edit15->Clear();
Edit16->Clear();
Edit31->Clear();
Edit27->Clear();
Edit30->Clear();
Edit23->Clear();
Edit26->Clear();
Edit22->Clear();
Edit32->Clear();
Edit28->Clear();
Edit29->Clear();
}
//---------------------------------------------------------------------------