source: cprs/trunk/CPRS-Chart/fGraphData.dfm

Last change on this file was 830, checked in by Kevin Toppenberg, 14 years ago

Upgrading to version 27

File size: 3.0 KB
Line 
1inherited frmGraphData: TfrmGraphData
2 Left = 0
3 Top = 0
4 Caption = 'GraphData - displayed only for testing'
5 ClientHeight = 582
6 ClientWidth = 782
7 Font.Name = 'Tahoma'
8 WindowState = wsMaximized
9 OnClose = FormClose
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = btnRefreshClick
13 ExplicitWidth = 790
14 ExplicitHeight = 609
15 PixelsPerInch = 96
16 TextHeight = 13
17 object pnlData: TPanel [0]
18 Left = 0
19 Top = 0
20 Width = 782
21 Height = 504
22 Align = alClient
23 TabOrder = 0
24 end
25 object pnlInfo: TPanel [1]
26 Left = 0
27 Top = 504
28 Width = 782
29 Height = 78
30 Align = alBottom
31 TabOrder = 1
32 object lblInfo: TLabel
33 Left = 14
34 Top = 5
35 Width = 162
36 Height = 13
37 Caption = 'Resize form before clicking button'
38 end
39 object lblInfoPersonal: TLabel
40 Left = 184
41 Top = 19
42 Width = 41
43 Height = 13
44 Alignment = taRightJustify
45 Caption = 'Personal'
46 end
47 object lblInfoPublic: TLabel
48 Left = 198
49 Top = 33
50 Width = 27
51 Height = 13
52 Alignment = taRightJustify
53 Caption = 'Public'
54 end
55 object lblPublic: TLabel
56 Left = 232
57 Top = 33
58 Width = 3
59 Height = 13
60 end
61 object lblPersonal: TLabel
62 Left = 231
63 Top = 19
64 Width = 3
65 Height = 13
66 end
67 object lblCurrent: TLabel
68 Left = 232
69 Top = 5
70 Width = 3
71 Height = 13
72 end
73 object lblInfoCurrent: TLabel
74 Left = 188
75 Top = 5
76 Width = 37
77 Height = 13
78 Alignment = taRightJustify
79 Caption = 'Current'
80 end
81 object btnData: TButton
82 Left = 14
83 Top = 22
84 Width = 75
85 Height = 25
86 Caption = 'TStringLists'
87 TabOrder = 0
88 OnClick = btnDataClick
89 end
90 object btnRefresh: TButton
91 Left = 102
92 Top = 22
93 Width = 75
94 Height = 25
95 Caption = 'Refresh'
96 Enabled = False
97 TabOrder = 1
98 OnClick = btnRefreshClick
99 end
100 object btnTesting: TButton
101 Left = 14
102 Top = 50
103 Width = 75
104 Height = 25
105 Caption = 'Testing'
106 TabOrder = 2
107 OnClick = btnTestingClick
108 end
109 object memTesting: TMemo
110 Left = 120
111 Top = 48
112 Width = 649
113 Height = 27
114 ScrollBars = ssVertical
115 TabOrder = 3
116 end
117 end
118 inherited amgrMain: TVA508AccessibilityManager
119 Data = (
120 (
121 'Component = pnlData'
122 'Status = stsDefault')
123 (
124 'Component = pnlInfo'
125 'Status = stsDefault')
126 (
127 'Component = btnData'
128 'Status = stsDefault')
129 (
130 'Component = btnRefresh'
131 'Status = stsDefault')
132 (
133 'Component = frmGraphData'
134 'Status = stsDefault')
135 (
136 'Component = btnTesting'
137 'Status = stsDefault')
138 (
139 'Component = memTesting'
140 'Status = stsDefault'))
141 end
142end
Note: See TracBrowser for help on using the repository browser.