source: cprs/branches/foia-cprs/CPRS-Chart/Orders/fOrdersDC.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.1 KB
Line 
1inherited frmDCOrders: TfrmDCOrders
2 Left = 316
3 Top = 226
4 Width = 433
5 Height = 316
6 Caption = 'Discontinue / Cancel Orders'
7 Position = poScreenCenter
8 OnCreate = FormCreate
9 PixelsPerInch = 96
10 TextHeight = 13
11 object Label1: TLabel
12 Left = 0
13 Top = 0
14 Width = 425
15 Height = 13
16 Align = alTop
17 Caption = 'The following orders will be discontinued -'
18 WordWrap = True
19 end
20 object Panel1: TPanel
21 Left = 0
22 Top = 13
23 Width = 425
24 Height = 188
25 Align = alClient
26 TabOrder = 0
27 object lstOrders: TCaptionListBox
28 Left = 1
29 Top = 1
30 Width = 423
31 Height = 186
32 Style = lbOwnerDrawVariable
33 Align = alClient
34 ItemHeight = 13
35 TabOrder = 0
36 OnDrawItem = lstOrdersDrawItem
37 OnMeasureItem = lstOrdersMeasureItem
38 Caption = 'The following orders will be discontinued '
39 end
40 end
41 object Panel2: TPanel
42 Left = 0
43 Top = 201
44 Width = 425
45 Height = 88
46 Align = alBottom
47 TabOrder = 1
48 DesignSize = (
49 425
50 88)
51 object lblReason: TLabel
52 Left = 1
53 Top = 1
54 Width = 423
55 Height = 13
56 Align = alTop
57 Caption = 'Reason for Discontinue (select one)'
58 end
59 object lstReason: TORListBox
60 Left = 3
61 Top = 19
62 Width = 218
63 Height = 60
64 ItemHeight = 13
65 ParentShowHint = False
66 ShowHint = True
67 TabOrder = 0
68 Caption = 'Reason for Discontinue (select one)'
69 ItemTipColor = clWindow
70 LongList = False
71 Pieces = '2'
72 end
73 object cmdOK: TButton
74 Left = 267
75 Top = 54
76 Width = 72
77 Height = 21
78 Anchors = [akLeft, akBottom]
79 Caption = 'OK'
80 Default = True
81 TabOrder = 2
82 OnClick = cmdOKClick
83 end
84 object cmdCancel: TButton
85 Left = 347
86 Top = 54
87 Width = 72
88 Height = 21
89 Anchors = [akRight, akBottom]
90 Cancel = True
91 Caption = 'Cancel'
92 TabOrder = 3
93 OnClick = cmdCancelClick
94 end
95 end
96end
Note: See TracBrowser for help on using the repository browser.