File: frmconfprojdatadict.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (96 lines) | stat: -rw-r--r-- 1,950 bytes parent folder | download | duplicates (11)
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
object ConfigureProjectDDForm: TConfigureProjectDDForm
  Left = 450
  Height = 179
  Top = 368
  Width = 463
  ActiveControl = CBUseDataDict
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = 'Set project Data Dictionary'
  ClientHeight = 179
  ClientWidth = 463
  OnCreate = FormCreate
  LCLVersion = '0.9.27'
  object FEDD: TFileNameEdit
    Left = 40
    Height = 27
    Top = 120
    Width = 392
    DialogOptions = []
    Filter = 'Data dictionary|*.fdd|Any file|*.*'
    FilterIndex = 0
    HideDirectories = False
    ButtonWidth = 23
    NumGlyphs = 1
    Enabled = False
    TabOrder = 0
  end
  object CBUseDataDict: TCheckBox
    Left = 16
    Height = 26
    Top = 8
    Width = 416
    AutoSize = False
    Caption = '&Use Data dictionary for this project'
    TabOrder = 1
  end
  object BOK: TButton
    Left = 376
    Height = 25
    Top = 152
    Width = 75
    BorderSpacing.InnerBorder = 4
    Caption = '&OK'
    Default = True
    ModalResult = 1
    OnClick = BOKClick
    TabOrder = 2
  end
  object BCancel: TButton
    Left = 288
    Height = 25
    Top = 152
    Width = 75
    BorderSpacing.InnerBorder = 4
    Cancel = True
    Caption = '&Cancel'
    ModalResult = 2
    TabOrder = 3
  end
  object RBUseKnownDD: TRadioButton
    Left = 17
    Height = 21
    Top = 40
    Width = 159
    Caption = 'Known data dictionary'
    Checked = True
    OnClick = RBUseFileClick
    State = cbChecked
    TabOrder = 4
  end
  object RBUseFile: TRadioButton
    Left = 16
    Height = 21
    Top = 96
    Width = 139
    Caption = 'Data dictionary &file:'
    OnClick = RBUseFileClick
    TabOrder = 5
    TabStop = False
  end
  object CBDD: TComboBox
    Left = 40
    Height = 25
    Top = 61
    Width = 184
    ItemHeight = 17
    OnChange = CBDDChange
    Style = csDropDownList
    TabOrder = 6
  end
  object OpenDialog1: TOpenDialog
    Title = 'Open existing file'
    left = 350
    top = 64
  end
end