source: cprs/trunk/CPRS-Chart/Orders/fOrdersVerify.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: 2.6 KB
Line 
1inherited frmVerifyOrders: TfrmVerifyOrders
2 Left = 341
3 Top = 182
4 Caption = 'Verify Orders'
5 ClientHeight = 340
6 Position = poScreenCenter
7 OnCreate = FormCreate
8 ExplicitWidth = 320
9 ExplicitHeight = 367
10 PixelsPerInch = 96
11 TextHeight = 13
12 object Panel1: TPanel [0]
13 Left = 0
14 Top = 0
15 Width = 427
16 Height = 293
17 Align = alClient
18 Constraints.MinHeight = 260
19 TabOrder = 1
20 OnResize = Panel1Resize
21 DesignSize = (
22 427
23 293)
24 object lblVerify: TLabel
25 Left = 1
26 Top = 1
27 Width = 425
28 Height = 13
29 Align = alTop
30 Caption = 'The following orders will be marked as verified -'
31 ExplicitWidth = 222
32 end
33 object lstOrders: TCaptionListBox
34 Left = 4
35 Top = 16
36 Width = 419
37 Height = 274
38 Style = lbOwnerDrawVariable
39 Anchors = [akLeft, akTop, akRight, akBottom]
40 ItemHeight = 13
41 ScrollWidth = 409
42 TabOrder = 0
43 OnDrawItem = lstOrdersDrawItem
44 OnMeasureItem = lstOrdersMeasureItem
45 Caption = 'The following orders will be released from hold '
46 end
47 end
48 object Panel2: TPanel [1]
49 Left = 0
50 Top = 293
51 Width = 427
52 Height = 47
53 Align = alBottom
54 TabOrder = 0
55 object lblESCode: TLabel
56 Left = 8
57 Top = 4
58 Width = 123
59 Height = 13
60 Caption = 'Electronic Signature Code'
61 end
62 object txtESCode: TCaptionEdit
63 Left = 8
64 Top = 20
65 Width = 137
66 Height = 21
67 PasswordChar = '*'
68 TabOrder = 0
69 Caption = 'Electronic Signature Code'
70 end
71 object cmdOK: TButton
72 Left = 267
73 Top = 20
74 Width = 72
75 Height = 21
76 Caption = 'OK'
77 Default = True
78 TabOrder = 2
79 OnClick = cmdOKClick
80 end
81 object cmdCancel: TButton
82 Left = 347
83 Top = 20
84 Width = 72
85 Height = 21
86 Cancel = True
87 Caption = 'Cancel'
88 TabOrder = 3
89 OnClick = cmdCancelClick
90 end
91 end
92 inherited amgrMain: TVA508AccessibilityManager
93 Data = (
94 (
95 'Component = Panel1'
96 'Status = stsDefault')
97 (
98 'Component = lstOrders'
99 'Status = stsDefault')
100 (
101 'Component = Panel2'
102 'Status = stsDefault')
103 (
104 'Component = txtESCode'
105 'Status = stsDefault')
106 (
107 'Component = cmdOK'
108 'Status = stsDefault')
109 (
110 'Component = cmdCancel'
111 'Status = stsDefault')
112 (
113 'Component = frmVerifyOrders'
114 'Status = stsDefault'))
115 end
116end
Note: See TracBrowser for help on using the repository browser.