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

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

Upgrading to version 27

File size: 3.5 KB
Line 
1inherited frmLabTests: TfrmLabTests
2 Left = 288
3 Top = 115
4 Caption = 'Select Lab Tests'
5 ClientHeight = 281
6 ClientWidth = 452
7 OldCreateOrder = True
8 Position = poScreenCenter
9 OnClose = FormClose
10 OnCreate = FormCreate
11 PixelsPerInch = 96
12 TextHeight = 13
13 object pnlLabTests: TORAutoPanel [0]
14 Left = 0
15 Top = 0
16 Width = 452
17 Height = 281
18 Align = alClient
19 TabOrder = 0
20 object lblTests: TLabel
21 Left = 12
22 Top = 12
23 Width = 79
24 Height = 13
25 Caption = 'Laboratory Tests'
26 end
27 object lblList: TLabel
28 Left = 276
29 Top = 28
30 Width = 100
31 Height = 13
32 Caption = 'Tests to be displayed'
33 end
34 object cmdOK: TButton
35 Left = 270
36 Top = 247
37 Width = 72
38 Height = 21
39 Caption = 'OK'
40 TabOrder = 5
41 OnClick = cmdOKClick
42 end
43 object cmdCancel: TButton
44 Left = 362
45 Top = 246
46 Width = 72
47 Height = 21
48 Cancel = True
49 Caption = 'Cancel'
50 ModalResult = 2
51 TabOrder = 6
52 end
53 object lstList: TORListBox
54 Left = 274
55 Top = 52
56 Width = 160
57 Height = 179
58 ItemHeight = 13
59 ParentShowHint = False
60 ShowHint = True
61 TabOrder = 4
62 OnClick = lstListClick
63 Caption = 'Tests to be displayed'
64 ItemTipColor = clWindow
65 LongList = False
66 Pieces = '2'
67 end
68 object cboTests: TORComboBox
69 Left = 10
70 Top = 34
71 Width = 160
72 Height = 200
73 Style = orcsSimple
74 AutoSelect = True
75 Caption = 'Laboratory Tests'
76 Color = clWindow
77 DropDownCount = 8
78 ItemHeight = 13
79 ItemTipColor = clWindow
80 ItemTipEnable = True
81 ListItemsOnly = False
82 LongList = True
83 LookupPiece = 0
84 MaxLength = 0
85 ParentShowHint = False
86 Pieces = '2'
87 ShowHint = True
88 Sorted = False
89 SynonymChars = '<>'
90 TabOrder = 0
91 OnChange = cboTestsChange
92 OnDblClick = cmdAddClick
93 OnEnter = cboTestsEnter
94 OnExit = cboTestsExit
95 OnNeedData = cboTestsNeedData
96 CharsNeedMatch = 1
97 end
98 object cmdRemove: TButton
99 Left = 186
100 Top = 144
101 Width = 72
102 Height = 21
103 Caption = 'Remove One'
104 Enabled = False
105 TabOrder = 3
106 OnClick = cmdRemoveClick
107 end
108 object cmdClear: TButton
109 Left = 186
110 Top = 116
111 Width = 72
112 Height = 21
113 Caption = 'Remove All'
114 Enabled = False
115 TabOrder = 2
116 OnClick = cmdClearClick
117 end
118 object cmdAdd: TButton
119 Left = 186
120 Top = 32
121 Width = 72
122 Height = 21
123 Caption = 'Add'
124 Enabled = False
125 TabOrder = 1
126 OnClick = cmdAddClick
127 end
128 end
129 inherited amgrMain: TVA508AccessibilityManager
130 Data = (
131 (
132 'Component = pnlLabTests'
133 'Status = stsDefault')
134 (
135 'Component = cmdOK'
136 'Status = stsDefault')
137 (
138 'Component = cmdCancel'
139 'Status = stsDefault')
140 (
141 'Component = lstList'
142 'Status = stsDefault')
143 (
144 'Component = cboTests'
145 'Status = stsDefault')
146 (
147 'Component = cmdRemove'
148 'Status = stsDefault')
149 (
150 'Component = cmdClear'
151 'Status = stsDefault')
152 (
153 'Component = cmdAdd'
154 'Status = stsDefault')
155 (
156 'Component = frmLabTests'
157 'Status = stsDefault'))
158 end
159end
Note: See TracBrowser for help on using the repository browser.