-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodules.dm1.dfm
More file actions
38 lines (38 loc) · 819 Bytes
/
Copy pathmodules.dm1.dfm
File metadata and controls
38 lines (38 loc) · 819 Bytes
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
object DataModule1: TDataModule1
OnCreate = DataModuleCreate
Height = 480
Width = 640
object FDConnection1: TFDConnection
Params.Strings = (
'User_Name=sysdba'
'Password=masterkey'
'Port=3050'
'DriverID=IB'
'Database=IB_WEBINAR.IB'
'Server=127.0.0.1')
LoginPrompt = False
Left = 64
Top = 56
end
object FDQuery1: TFDQuery
Connection = FDConnection1
Left = 168
Top = 56
end
object FDTable1: TFDTable
Connection = FDConnection1
Left = 248
Top = 56
end
object FDDeleteContents: TFDQuery
Connection = FDConnection1
ResourceOptions.AssignedValues = [rvEscapeExpand, rvCmdExecMode]
Left = 352
Top = 56
end
object FDGUIxWaitCursor1: TFDGUIxWaitCursor
Provider = 'FMX'
Left = 416
Top = 144
end
end