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

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

Upgrading to version 27

File size: 3.2 KB
Line 
1inherited frmLabTest: TfrmLabTest
2 Left = 776
3 Top = 338
4 Caption = 'Select Lab Test for Graph'
5 ClientHeight = 281
6 ClientWidth = 277
7 OldCreateOrder = True
8 Position = poScreenCenter
9 OnCreate = FormCreate
10 ExplicitWidth = 285
11 ExplicitHeight = 308
12 PixelsPerInch = 96
13 TextHeight = 13
14 object pnlLabTest: TORAutoPanel [0]
15 Left = 0
16 Top = 0
17 Width = 277
18 Height = 281
19 Align = alClient
20 TabOrder = 0
21 object lblTest: TLabel
22 Left = 8
23 Top = 8
24 Width = 74
25 Height = 13
26 Caption = 'Laboratory Test'
27 end
28 object lblSpecimen: TLabel
29 Left = 8
30 Top = 238
31 Width = 47
32 Height = 13
33 Caption = 'Specimen'
34 end
35 object lblSpecInfo: TLabel
36 Left = 180
37 Top = 222
38 Width = 89
39 Height = 55
40 AutoSize = False
41 Caption =
42 'A specimen can be selected to restrict values only for that spec' +
43 'imen.'
44 WordWrap = True
45 end
46 object cmdOK: TButton
47 Left = 197
48 Top = 22
49 Width = 72
50 Height = 21
51 Caption = 'OK'
52 TabOrder = 2
53 OnClick = cmdOKClick
54 end
55 object cmdCancel: TButton
56 Left = 197
57 Top = 49
58 Width = 72
59 Height = 21
60 Cancel = True
61 Caption = 'Cancel'
62 ModalResult = 2
63 TabOrder = 3
64 end
65 object cboList: TORComboBox
66 Left = 8
67 Top = 22
68 Width = 160
69 Height = 200
70 Style = orcsSimple
71 AutoSelect = True
72 Caption = 'Laboratory Test'
73 Color = clWindow
74 DropDownCount = 8
75 ItemHeight = 13
76 ItemTipColor = clWindow
77 ItemTipEnable = True
78 ListItemsOnly = True
79 LongList = True
80 LookupPiece = 0
81 MaxLength = 0
82 ParentShowHint = False
83 Pieces = '2'
84 ShowHint = True
85 Sorted = False
86 SynonymChars = '<>'
87 TabOrder = 0
88 OnDblClick = cmdOKClick
89 OnEnter = cboListEnter
90 OnExit = cboListExit
91 OnNeedData = cboListNeedData
92 CharsNeedMatch = 1
93 end
94 object cboSpecimen: TORComboBox
95 Left = 8
96 Top = 252
97 Width = 160
98 Height = 21
99 Style = orcsDropDown
100 AutoSelect = True
101 Caption = 'Specimen'
102 Color = clWindow
103 DropDownCount = 8
104 ItemHeight = 13
105 ItemTipColor = clWindow
106 ItemTipEnable = True
107 ListItemsOnly = True
108 LongList = True
109 LookupPiece = 0
110 MaxLength = 0
111 ParentShowHint = False
112 Pieces = '2'
113 ShowHint = True
114 Sorted = False
115 SynonymChars = '<>'
116 TabOrder = 1
117 OnNeedData = cboSpecimenNeedData
118 CharsNeedMatch = 1
119 end
120 end
121 inherited amgrMain: TVA508AccessibilityManager
122 Data = (
123 (
124 'Component = pnlLabTest'
125 'Status = stsDefault')
126 (
127 'Component = cmdOK'
128 'Status = stsDefault')
129 (
130 'Component = cmdCancel'
131 'Status = stsDefault')
132 (
133 'Component = cboList'
134 'Status = stsDefault')
135 (
136 'Component = cboSpecimen'
137 'Status = stsDefault')
138 (
139 'Component = frmLabTest'
140 'Status = stsDefault'))
141 end
142end
Note: See TracBrowser for help on using the repository browser.