source: cprs/branches/foia-cprs/CPRS-Chart/fLabTests.dfm@ 459

Last change on this file since 459 was 459, checked in by Kevin Toppenberg, 16 years ago

Adding foia-cprs branch

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