-
Notifications
You must be signed in to change notification settings - Fork 1
/
unit1.lfm
76 lines (76 loc) · 1.39 KB
/
unit1.lfm
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
object Form1: TForm1
Left = 375
Height = 114
Top = 137
Width = 306
Caption = 'SQL to EXEL converter by Lenivets ACNielsen'
ClientHeight = 114
ClientWidth = 306
LCLVersion = '1.0.12.0'
object Button1: TButton
Left = 184
Height = 71
Top = 8
Width = 114
Caption = 'PWN some gasss'
OnClick = Button1Click
TabOrder = 0
end
object Edit1: TEdit
Left = 8
Height = 23
Top = 8
Width = 168
TabOrder = 1
Text = 'UAL40W5ZW1\SQLEXPRESS'
end
object Edit2: TEdit
Left = 8
Height = 23
Top = 32
Width = 168
TabOrder = 2
Text = 'SQL Server'
end
object Edit3: TEdit
Left = 8
Height = 23
Top = 56
Width = 168
TabOrder = 3
Text = 'Spaceman'
end
object Edit4: TEdit
Left = 8
Height = 23
Top = 80
Width = 288
TabOrder = 4
Text = 'select * from NSW'
end
object ODBCConnection1: TODBCConnection
Connected = False
LoginPrompt = False
KeepConnection = True
Transaction = SQLTransaction1
LogEvents = []
left = 24
top = 96
end
object SQLQuery1: TSQLQuery
FieldDefs = <>
Database = ODBCConnection1
Transaction = SQLTransaction1
ReadOnly = True
Params = <>
left = 160
top = 96
end
object SQLTransaction1: TSQLTransaction
Active = False
Action = caNone
Database = ODBCConnection1
left = 96
top = 96
end
end