File: MainFrm.dfm

package info (click to toggle)
mysql-query-browser 1.1.6-1sarge0
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 36,320 kB
  • ctags: 24,680
  • sloc: pascal: 203,479; xml: 136,561; ansic: 47,502; cpp: 28,926; sh: 12,433; objc: 4,823; java: 1,849; php: 1,485; python: 1,225; sql: 1,128; makefile: 872
file content (143 lines) | stat: -rw-r--r-- 2,836 bytes parent folder | download
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
object MainForm: TMainForm
  Left = 266
  Top = 190
  Width = 559
  Height = 451
  Caption = 'MainForm'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Shell Dlg 2'
  Font.Style = []
  OldCreateOrder = True
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TTntLabel
    Left = 16
    Top = 16
    Width = 184
    Height = 13
    Caption = 'TntEdit (Data aware version available)'
  end
  object Label2: TTntLabel
    Left = 16
    Top = 64
    Width = 217
    Height = 13
    Caption = 'TntComboBox (Data aware version available)'
  end
  object Label3: TTntLabel
    Left = 16
    Top = 176
    Width = 50
    Height = 13
    Caption = 'TntListBox'
  end
  object Label4: TTntLabel
    Left = 256
    Top = 176
    Width = 79
    Height = 13
    Caption = 'TntCheckListBox'
  end
  object Label5: TTntLabel
    Left = 16
    Top = 304
    Width = 44
    Height = 13
    Caption = 'TntMemo'
  end
  object Label6: TTntLabel
    Left = 16
    Top = 120
    Width = 217
    Height = 49
    Caption = 
      'This program will fully support Unicode characters only when run' +
      'ning on Windows NT/2000/XP.'
    AutoSize = False
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clNavy
    Font.Height = -11
    Font.Name = 'MS Shell Dlg 2'
    Font.Style = [fsBold]
    ParentFont = False
    WordWrap = True
  end
  object TntComboBox1: TTntComboBox
    Left = 16
    Top = 80
    Width = 185
    Height = 21
    ItemHeight = 13
    TabOrder = 0
  end
  object TntEdit1: TTntEdit
    Left = 16
    Top = 32
    Width = 185
    Height = 21
    TabOrder = 1
  end
  object TntMemo1: TTntMemo
    Left = 16
    Top = 320
    Width = 481
    Height = 89
    TabOrder = 2
  end
  object TntListBox1: TTntListBox
    Left = 16
    Top = 192
    Width = 225
    Height = 97
    ItemHeight = 13
    TabOrder = 3
  end
  object TntCheckListBox1: TTntCheckListBox
    Left = 256
    Top = 192
    Width = 241
    Height = 97
    ItemHeight = 13
    TabOrder = 4
  end
  object Button1: TTntButton
    Left = 256
    Top = 8
    Width = 241
    Height = 25
    Caption = 'TntEdit.Text -> Form.Caption'
    TabOrder = 5
    OnClick = Button1Click
  end
  object Button2: TTntButton
    Left = 256
    Top = 40
    Width = 241
    Height = 25
    Caption = 'Add TntEdit.Text to TntComboBox.Items'
    TabOrder = 6
    OnClick = Button2Click
  end
  object Button3: TTntButton
    Left = 256
    Top = 72
    Width = 241
    Height = 25
    Caption = 'Add TntEdit.Text to TntListBox.Items'
    TabOrder = 7
    OnClick = Button3Click
  end
  object Button4: TTntButton
    Left = 256
    Top = 104
    Width = 241
    Height = 25
    Caption = 'Add TntEdit.Text to TntCheckListBox.Items'
    TabOrder = 8
    OnClick = Button4Click
  end
end