source: cprs/trunk/CPRS-Chart/Orders/fODValidateAction.dfm@ 829

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

Upgrade to version 27

File size: 3.5 KB
Line 
1inherited frmInvalidActionList: TfrmInvalidActionList
2 Left = 445
3 Top = 142
4 Caption = 'Invalidated action orders'
5 ClientHeight = 519
6 ClientWidth = 526
7 Position = poScreenCenter
8 OnCreate = FormCreate
9 OnResize = FormResize
10 PixelsPerInch = 96
11 TextHeight = 13
12 object pnlTop: TPanel [0]
13 Left = 0
14 Top = 0
15 Width = 526
16 Height = 229
17 Align = alTop
18 TabOrder = 0
19 object Label1: TLabel
20 Left = 1
21 Top = 1
22 Width = 524
23 Height = 24
24 Align = alTop
25 AutoSize = False
26 Caption = 'You can'#39't take this action on the following orders'
27 end
28 object lstActDeniedOrders: TCaptionListBox
29 Left = 1
30 Top = 52
31 Width = 524
32 Height = 176
33 Style = lbOwnerDrawVariable
34 Align = alClient
35 ItemHeight = 16
36 TabOrder = 0
37 OnDrawItem = lstActDeniedOrdersDrawItem
38 OnMeasureItem = lstActDeniedOrdersMeasureItem
39 Caption = 'You can'#39't take this action on the following orders'
40 end
41 object hdrAction: THeaderControl
42 Left = 1
43 Top = 25
44 Width = 524
45 Height = 27
46 Sections = <
47 item
48 ImageIndex = -1
49 MinWidth = 300
50 Text = 'Order'
51 Width = 350
52 end
53 item
54 ImageIndex = -1
55 MinWidth = 150
56 Text = 'Reason'
57 Width = 150
58 end>
59 OnSectionResize = hdrActionSectionResize
60 end
61 end
62 object pnlBottom: TPanel [1]
63 Left = 0
64 Top = 229
65 Width = 526
66 Height = 249
67 Align = alClient
68 TabOrder = 1
69 ExplicitHeight = 256
70 object Label2: TLabel
71 Left = 1
72 Top = 1
73 Width = 524
74 Height = 40
75 Align = alTop
76 AutoSize = False
77 Caption = 'The following orders will be taken action:'
78 Font.Charset = DEFAULT_CHARSET
79 Font.Color = clWindowText
80 Font.Height = -11
81 Font.Name = 'MS Sans Serif'
82 Font.Style = []
83 ParentFont = False
84 Layout = tlCenter
85 end
86 object lstValidOrders: TCaptionListBox
87 Left = 1
88 Top = 41
89 Width = 524
90 Height = 207
91 Style = lbOwnerDrawVariable
92 Align = alClient
93 ItemHeight = 16
94 TabOrder = 0
95 OnDrawItem = lstValidOrdersDrawItem
96 OnMeasureItem = lstValidOrdersMeasureItem
97 Caption = 'The following orders will be taken action'
98 end
99 end
100 object Panel1: TPanel [2]
101 Left = 0
102 Top = 478
103 Width = 526
104 Height = 41
105 Align = alBottom
106 TabOrder = 2
107 ExplicitTop = 485
108 DesignSize = (
109 526
110 41)
111 object btnOK: TButton
112 Left = 440
113 Top = 12
114 Width = 75
115 Height = 21
116 Anchors = [akRight, akBottom]
117 Caption = 'OK'
118 TabOrder = 0
119 OnClick = btnOKClick
120 end
121 end
122 inherited amgrMain: TVA508AccessibilityManager
123 Data = (
124 (
125 'Component = pnlTop'
126 'Status = stsDefault')
127 (
128 'Component = lstActDeniedOrders'
129 'Status = stsDefault')
130 (
131 'Component = hdrAction'
132 'Status = stsDefault')
133 (
134 'Component = pnlBottom'
135 'Status = stsDefault')
136 (
137 'Component = lstValidOrders'
138 'Status = stsDefault')
139 (
140 'Component = Panel1'
141 'Status = stsDefault')
142 (
143 'Component = btnOK'
144 'Status = stsDefault')
145 (
146 'Component = frmInvalidActionList'
147 'Status = stsDefault'))
148 end
149end
Note: See TracBrowser for help on using the repository browser.