| 1 | inherited frmOCSession: TfrmOCSession
 | 
|---|
| 2 |   Left = 365
 | 
|---|
| 3 |   Top = 221
 | 
|---|
| 4 |   Width = 504
 | 
|---|
| 5 |   Height = 298
 | 
|---|
| 6 |   BorderIcons = []
 | 
|---|
| 7 |   Caption = 'Order Checks'
 | 
|---|
| 8 |   Position = poScreenCenter
 | 
|---|
| 9 |   ShowHint = True
 | 
|---|
| 10 |   OnClose = FormClose
 | 
|---|
| 11 |   OnShow = FormShow
 | 
|---|
| 12 |   PixelsPerInch = 96
 | 
|---|
| 13 |   TextHeight = 13
 | 
|---|
| 14 |   object lstChecks: TCaptionListBox [0]
 | 
|---|
| 15 |     Left = 0
 | 
|---|
| 16 |     Top = 0
 | 
|---|
| 17 |     Width = 496
 | 
|---|
| 18 |     Height = 153
 | 
|---|
| 19 |     Style = lbOwnerDrawVariable
 | 
|---|
| 20 |     Align = alClient
 | 
|---|
| 21 |     ItemHeight = 13
 | 
|---|
| 22 |     MultiSelect = True
 | 
|---|
| 23 |     ParentShowHint = False
 | 
|---|
| 24 |     ShowHint = True
 | 
|---|
| 25 |     TabOrder = 1
 | 
|---|
| 26 |     OnDrawItem = lstChecksDrawItem
 | 
|---|
| 27 |     OnMeasureItem = lstChecksMeasureItem
 | 
|---|
| 28 |     HintOnItem = True
 | 
|---|
| 29 |   end
 | 
|---|
| 30 |   object pnlBottom: TPanel [1]
 | 
|---|
| 31 |     Left = 0
 | 
|---|
| 32 |     Top = 153
 | 
|---|
| 33 |     Width = 496
 | 
|---|
| 34 |     Height = 111
 | 
|---|
| 35 |     Align = alBottom
 | 
|---|
| 36 |     BevelOuter = bvNone
 | 
|---|
| 37 |     TabOrder = 0
 | 
|---|
| 38 |     DesignSize = (
 | 
|---|
| 39 |       496
 | 
|---|
| 40 |       111)
 | 
|---|
| 41 |     object lblJustify: TLabel
 | 
|---|
| 42 |       Left = 8
 | 
|---|
| 43 |       Top = 34
 | 
|---|
| 44 |       Width = 248
 | 
|---|
| 45 |       Height = 13
 | 
|---|
| 46 |       Anchors = [akLeft, akTop, akRight]
 | 
|---|
| 47 |       Caption = 'Enter justification for overriding critical order checks -'
 | 
|---|
| 48 |     end
 | 
|---|
| 49 |     object txtJustify: TCaptionEdit
 | 
|---|
| 50 |       Left = 8
 | 
|---|
| 51 |       Top = 50
 | 
|---|
| 52 |       Width = 480
 | 
|---|
| 53 |       Height = 21
 | 
|---|
| 54 |       Anchors = [akLeft, akTop, akRight]
 | 
|---|
| 55 |       MaxLength = 80
 | 
|---|
| 56 |       TabOrder = 0
 | 
|---|
| 57 |       OnKeyDown = txtJustifyKeyDown
 | 
|---|
| 58 |       Caption = 'Enter justification for overriding critical order checks -'
 | 
|---|
| 59 |     end
 | 
|---|
| 60 |     object cmdCancelOrder: TButton
 | 
|---|
| 61 |       Left = 356
 | 
|---|
| 62 |       Top = 5
 | 
|---|
| 63 |       Width = 133
 | 
|---|
| 64 |       Height = 21
 | 
|---|
| 65 |       Anchors = [akLeft, akTop, akRight]
 | 
|---|
| 66 |       Caption = 'Cancel Selected Order(s)'
 | 
|---|
| 67 |       TabOrder = 2
 | 
|---|
| 68 |       OnClick = cmdCancelOrderClick
 | 
|---|
| 69 |     end
 | 
|---|
| 70 |     object cmdContinue: TButton
 | 
|---|
| 71 |       Left = 212
 | 
|---|
| 72 |       Top = 82
 | 
|---|
| 73 |       Width = 72
 | 
|---|
| 74 |       Height = 21
 | 
|---|
| 75 |       Anchors = [akLeft, akTop, akRight]
 | 
|---|
| 76 |       Caption = 'Continue'
 | 
|---|
| 77 |       TabOrder = 3
 | 
|---|
| 78 |       OnClick = cmdContinueClick
 | 
|---|
| 79 |     end
 | 
|---|
| 80 |   end
 | 
|---|
| 81 |   inherited DKLanguageController1: TDKLanguageController
 | 
|---|
| 82 |     LangData = {
 | 
|---|
| 83 |       0C0066726D4F4353657373696F6E010100000001000000070043617074696F6E
 | 
|---|
| 84 |       010600000009006C7374436865636B7300000900706E6C426F74746F6D00000A
 | 
|---|
| 85 |       006C626C4A757374696679010100000002000000070043617074696F6E000A00
 | 
|---|
| 86 |       7478744A757374696679010100000003000000070043617074696F6E000E0063
 | 
|---|
| 87 |       6D6443616E63656C4F72646572010100000004000000070043617074696F6E00
 | 
|---|
| 88 |       0B00636D64436F6E74696E7565010100000005000000070043617074696F6E00}
 | 
|---|
| 89 |   end
 | 
|---|
| 90 | end
 | 
|---|