-
Notifications
You must be signed in to change notification settings - Fork 0
/
fprior.cpp
29 lines (25 loc) · 958 Bytes
/
fprior.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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "fprior.h"
#include "F_DM.h"
#include "FTASK.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm9 *Form9;
//---------------------------------------------------------------------------
__fastcall TForm9::TForm9(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm9::SpeedButton1Click(TObject *Sender)
{
TASK->Edit25->Text=DM->QPRIOR->FieldByName("NAME")->AsString;
TASK->Edit3->Text=DM->QPRIOR->FieldByName("NAME")->AsString;
TASK->Edit21->Text=DM->QTYPE->FieldByName("TASK_TYPE")->AsString;
TASK->Edit26->Text=DM->QTYPE->FieldByName("TASK_TYPE")->AsString;
Form9->Close();
}
//---------------------------------------------------------------------------