-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFTYPE.cpp
26 lines (23 loc) · 836 Bytes
/
FTYPE.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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "FTYPE.h"
#include "F_DM.h"
#include "FTASK.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm11 *Form11;
//---------------------------------------------------------------------------
__fastcall TForm11::TForm11(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm11::SpeedButton2Click(TObject *Sender)
{
TASK->Edit21->Text=DM->QTYPE->FieldByName("TASK_TYPE")->AsString;
TASK->Edit26->Text=DM->QTYPE->FieldByName("TASK_TYPE")->AsString;
Form11->Close();
}
//---------------------------------------------------------------------------