-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.dfm
77 lines (77 loc) · 1.6 KB
/
main.dfm
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
object frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'TiffTagReader'
ClientHeight = 642
ClientWidth = 965
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
DesignSize = (
965
642)
PixelsPerInch = 120
TextHeight = 16
object btnRenameFiles: TButton
Left = 8
Top = 0
Width = 145
Height = 41
Caption = 'Load File'
TabOrder = 0
OnClick = btnRenameFilesClick
end
object TabControl1: TTabControl
Left = 8
Top = 47
Width = 949
Height = 587
Anchors = [akLeft, akTop, akRight, akBottom]
TabOrder = 1
Tabs.Strings = (
'1'
'2'
'3')
TabIndex = 0
OnChange = TabControl1Change
DesignSize = (
949
587)
object StringGrid1: TStringGrid
AlignWithMargins = True
Left = 3
Top = 32
Width = 932
Height = 546
Anchors = [akLeft, akTop, akRight, akBottom]
ColCount = 3
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goEditing]
TabOrder = 0
ColWidths = (
114
51
761)
end
end
object btnSaveIFDItems: TButton
Left = 159
Top = 0
Width = 114
Height = 41
Caption = 'Write Tags'
TabOrder = 2
OnClick = btnSaveIFDItemsClick
end
object OpenDialog: TOpenDialog
DefaultExt = '*.tif'
Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
Left = 576
Top = 16
end
end