-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfixlinkedvaluesfrm.lfm
98 lines (98 loc) · 1.98 KB
/
fixlinkedvaluesfrm.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
object FixLinkedValuesForm: TFixLinkedValuesForm
Left = 2531
Height = 375
Top = 333
Width = 464
BorderStyle = bsDialog
Caption = 'Fix Linked Values'
ClientHeight = 375
ClientWidth = 464
OnShow = FormShow
Position = poMainFormCenter
LCLVersion = '1.8.2.0'
object CloseBtn: TBitBtn
Left = 380
Height = 28
Top = 344
Width = 76
DefaultCaption = True
Kind = bkClose
ModalResult = 11
TabOrder = 0
end
object LinkedTableEdt: TEdit
Left = 155
Height = 27
Top = 8
Width = 147
ReadOnly = True
TabOrder = 1
Text = 'Linked Table'
end
object LinkedColumnEdt: TEdit
Left = 309
Height = 27
Top = 8
Width = 147
ReadOnly = True
TabOrder = 2
Text = 'Linked Column'
end
object WrongValueEdt: TEdit
Left = 8
Height = 27
Top = 8
Width = 138
ReadOnly = True
TabOrder = 3
Text = 'Wrong Value'
end
object DBGrid1: TDBGrid
Left = 8
Height = 272
Top = 72
Width = 448
Color = clWindow
Columns = <>
DataSource = DataForm.FromQuerySource1
Options = [dgTitles, dgIndicator, dgColumnResize, dgColumnMove, dgColLines, dgRowLines, dgTabs, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit, dgAutoSizeColumns]
TabOrder = 4
end
object SaveNewValueBtn: TButton
Left = 248
Height = 28
Top = 344
Width = 131
Caption = 'Save new Value'
OnClick = SaveNewValueBtnClick
TabOrder = 5
end
object ReplaceAllValuesBtn: TButton
Left = 104
Height = 28
Top = 344
Width = 139
Caption = 'Replace All Values'
OnClick = ReplaceAllValuesBtnClick
TabOrder = 6
end
object SearchEdt: TEdit
Left = 8
Height = 27
Top = 38
Width = 136
ParentShowHint = False
ShowHint = True
TabOrder = 7
TextHint = 'Type here to search'
end
object SearchBtn: TButton
Left = 144
Height = 27
Top = 38
Width = 75
Caption = 'Search'
OnClick = SearchBtnClick
TabOrder = 8
end
end