-
Notifications
You must be signed in to change notification settings - Fork 0
/
FDEP.cpp
36 lines (32 loc) · 1021 Bytes
/
FDEP.cpp
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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "FDEP.h"
#include "F_DM.h"
#include "FAUTHENTIFICATION.h"
#include "FFUN.h"
#include "FP_T.h"
#include "fRECEPETION.h"
#include "FRECEPTION.h"
#include "FTASK.h"
#include "FTEAMS.h"
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm6 *Form6;
//---------------------------------------------------------------------------
__fastcall TForm6::TForm6(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm6::SpeedButton1Click(TObject *Sender)
{
DM->QTEAMS->Close();
DM->QTEAMS->Open();
F_TEAMS->Edit17->Text=DM->QDEP->FieldByName("NAME")->AsString;
F_TEAMS->Edit27->Text=DM->QDEP->FieldByName("NAME")->AsString;
Form6->Close();
}
//---------------------------------------------------------------------------