-
Notifications
You must be signed in to change notification settings - Fork 0
/
FP_T.cpp
27 lines (24 loc) · 886 Bytes
/
FP_T.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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "FP_T.h"
#include "F_DM.h"
#include "FTASK.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm5 *Form5;
//---------------------------------------------------------------------------
__fastcall TForm5::TForm5(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm5::SpeedButton1Click(TObject *Sender)
{
TASK->Edit23->Text=DM->QP_T->FieldByName("PROJECT")->AsString;
TASK->Edit24->Text=DM->QP_T->FieldByName("PROJECT")->AsString;
TASK->Edit36->Text=DM->QP_T->FieldByName("PROJECT")->AsString;
Form5->Close();
}
//---------------------------------------------------------------------------