source: cprs/trunk/CPRS-Chart/Consults/fConsultAlertTo.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.2 KB
Line 
1inherited frmConsultAlertsTo: TfrmConsultAlertsTo
2 Left = 297
3 Top = 206
4 BorderStyle = bsDialog
5 Caption = 'Send Alert'
6 ClientHeight = 262
7 ClientWidth = 371
8 OldCreateOrder = True
9 Position = poScreenCenter
10 PixelsPerInch = 96
11 TextHeight = 13
12 object pnlBase: TORAutoPanel [0]
13 Left = 0
14 Top = 0
15 Width = 371
16 Height = 262
17 Align = alClient
18 BevelOuter = bvNone
19 TabOrder = 0
20 ExplicitWidth = 358
21 object SrcLabel: TLabel
22 Left = 12
23 Top = 14
24 Width = 98
25 Height = 13
26 Caption = 'Select or enter name'
27 end
28 object DstLabel: TLabel
29 Left = 217
30 Top = 14
31 Width = 132
32 Height = 13
33 Caption = 'Currently selected recipients'
34 end
35 object cmdOK: TButton
36 Left = 105
37 Top = 226
38 Width = 75
39 Height = 25
40 Caption = 'OK'
41 ModalResult = 1
42 TabOrder = 4
43 OnClick = cmdOKClick
44 end
45 object cmdCancel: TButton
46 Left = 185
47 Top = 226
48 Width = 75
49 Height = 25
50 Cancel = True
51 Caption = 'Cancel'
52 ModalResult = 2
53 TabOrder = 5
54 OnClick = cmdCancelClick
55 end
56 object cboSrcList: TORComboBox
57 Left = 12
58 Top = 30
59 Width = 144
60 Height = 185
61 Style = orcsSimple
62 AutoSelect = True
63 Caption = 'Select or enter name'
64 Color = clWindow
65 DropDownCount = 8
66 ItemHeight = 13
67 ItemTipColor = clWindow
68 ItemTipEnable = True
69 ListItemsOnly = True
70 LongList = True
71 LookupPiece = 2
72 MaxLength = 0
73 Pieces = '2,3'
74 Sorted = False
75 SynonymChars = '<>'
76 TabOrder = 0
77 OnKeyDown = cboSrcListKeyDown
78 OnMouseClick = cboSrcListMouseClick
79 OnNeedData = cboSrcListNeedData
80 CharsNeedMatch = 1
81 end
82 object DstList: TORListBox
83 Left = 217
84 Top = 30
85 Width = 144
86 Height = 185
87 ItemHeight = 13
88 MultiSelect = True
89 ParentShowHint = False
90 ShowHint = True
91 TabOrder = 2
92 OnClick = DstListClick
93 Caption = 'Currently selected recipients'
94 ItemTipColor = clWindow
95 LongList = False
96 Pieces = '2'
97 end
98 object btnAdd: TButton
99 Left = 160
100 Top = 109
101 Width = 51
102 Height = 25
103 Caption = 'Add'
104 TabOrder = 1
105 OnClick = cboSrcListMouseClick
106 end
107 object btnRemove: TButton
108 Left = 160
109 Top = 140
110 Width = 51
111 Height = 25
112 Caption = 'Remove'
113 TabOrder = 3
114 OnClick = DstListClick
115 end
116 end
117 inherited amgrMain: TVA508AccessibilityManager
118 Data = (
119 (
120 'Component = pnlBase'
121 'Status = stsDefault')
122 (
123 'Component = cmdOK'
124 'Status = stsDefault')
125 (
126 'Component = cmdCancel'
127 'Status = stsDefault')
128 (
129 'Component = cboSrcList'
130 'Status = stsDefault')
131 (
132 'Component = DstList'
133 'Status = stsDefault')
134 (
135 'Component = btnAdd'
136 'Status = stsDefault')
137 (
138 'Component = btnRemove'
139 'Status = stsDefault')
140 (
141 'Component = frmConsultAlertsTo'
142 'Status = stsDefault'))
143 end
144end
Note: See TracBrowser for help on using the repository browser.