source: cprs/trunk/CPRS-Chart/Orders/fOrderFlag.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.8 KB
Line 
1inherited frmFlagOrder: TfrmFlagOrder
2 Left = 334
3 Top = 234
4 Caption = 'Flag Order'
5 ClientHeight = 264
6 Position = poScreenCenter
7 OnCreate = FormCreate
8 ExplicitLeft = 334
9 ExplicitTop = 234
10 ExplicitWidth = 320
11 ExplicitHeight = 291
12 PixelsPerInch = 96
13 TextHeight = 13
14 object Label1: TLabel [0]
15 Left = 8
16 Top = 80
17 Width = 199
18 Height = 13
19 Caption = 'Reason for Flag (Enter or select from list)'
20 end
21 object lblAlertRecipient: TLabel [1]
22 Left = 8
23 Top = 211
24 Width = 69
25 Height = 13
26 Caption = 'Alert Recipient'
27 end
28 object cmdOK: TButton [2]
29 Left = 267
30 Top = 227
31 Width = 72
32 Height = 21
33 Caption = 'OK'
34 Default = True
35 TabOrder = 2
36 OnClick = cmdOKClick
37 end
38 object cmdCancel: TButton [3]
39 Left = 347
40 Top = 227
41 Width = 72
42 Height = 21
43 Cancel = True
44 Caption = 'Cancel'
45 TabOrder = 3
46 OnClick = cmdCancelClick
47 end
48 object memOrder: TMemo [4]
49 Left = 8
50 Top = 8
51 Width = 411
52 Height = 56
53 Color = clBtnFace
54 Lines.Strings = (
55 'memOrder')
56 ReadOnly = True
57 TabOrder = 4
58 WantReturns = False
59 end
60 object cboAlertRecipient: TORComboBox [5]
61 Left = 7
62 Top = 227
63 Width = 226
64 Height = 21
65 HelpContext = 9102
66 Style = orcsDropDown
67 AutoSelect = True
68 Caption = 'Alert Recipient'
69 Color = clWindow
70 DropDownCount = 8
71 ItemHeight = 13
72 ItemTipColor = clWindow
73 ItemTipEnable = True
74 ListItemsOnly = True
75 LongList = True
76 LookupPiece = 2
77 MaxLength = 0
78 Pieces = '2,3'
79 Sorted = False
80 SynonymChars = '<>'
81 TabOrder = 1
82 OnExit = cboOnExit
83 OnNeedData = cboAlertRecipientNeedData
84 CharsNeedMatch = 1
85 end
86 object cboFlagReason: TORComboBox [6]
87 Left = 8
88 Top = 99
89 Width = 411
90 Height = 106
91 Style = orcsSimple
92 AutoSelect = True
93 Color = clWindow
94 DropDownCount = 8
95 ItemHeight = 13
96 ItemTipColor = clWindow
97 ItemTipEnable = True
98 ListItemsOnly = False
99 LongList = False
100 LookupPiece = 0
101 MaxLength = 80
102 Pieces = '2'
103 Sorted = False
104 SynonymChars = '<>'
105 TabOrder = 0
106 CharsNeedMatch = 1
107 end
108 inherited amgrMain: TVA508AccessibilityManager
109 Data = (
110 (
111 'Component = cmdOK'
112 'Status = stsDefault')
113 (
114 'Component = cmdCancel'
115 'Status = stsDefault')
116 (
117 'Component = memOrder'
118 'Status = stsDefault')
119 (
120 'Component = cboAlertRecipient'
121 'Status = stsDefault')
122 (
123 'Component = cboFlagReason'
124 'Status = stsDefault')
125 (
126 'Component = frmFlagOrder'
127 'Status = stsDefault'))
128 end
129end
Note: See TracBrowser for help on using the repository browser.