source: cprs/trunk/CPRS-Chart/Orders/fODText.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.1 KB
Line 
1inherited frmODText: TfrmODText
2 Caption = 'Text Only Order'
3 PixelsPerInch = 96
4 TextHeight = 13
5 object lblText: TLabel [0]
6 Left = 6
7 Top = 4
8 Width = 126
9 Height = 13
10 Caption = 'Enter the text of the order -'
11 end
12 object lblStart: TLabel [1]
13 Left = 226
14 Top = 150
15 Width = 76
16 Height = 13
17 Caption = 'Start Date/Time'
18 end
19 object lblStop: TLabel [2]
20 Left = 374
21 Top = 150
22 Width = 76
23 Height = 13
24 Caption = 'Stop Date/Time'
25 end
26 inherited memOrder: TCaptionMemo
27 TabOrder = 6
28 end
29 inherited cmdAccept: TButton
30 TabOrder = 3
31 end
32 object memText: TMemo [5]
33 Left = 6
34 Top = 18
35 Width = 508
36 Height = 124
37 TabOrder = 0
38 OnChange = ControlChange
39 end
40 object txtStart: TORDateBox [6]
41 Left = 226
42 Top = 164
43 Width = 140
44 Height = 21
45 TabOrder = 1
46 OnChange = ControlChange
47 DateOnly = False
48 RequireTime = False
49 Caption = 'Start Date/Time'
50 end
51 object txtStop: TORDateBox [7]
52 Left = 374
53 Top = 164
54 Width = 140
55 Height = 21
56 TabOrder = 2
57 OnChange = ControlChange
58 DateOnly = False
59 RequireTime = False
60 Caption = 'Stop Date/Time'
61 end
62 inherited cmdQuit: TButton
63 TabOrder = 4
64 end
65 inherited pnlMessage: TPanel
66 TabOrder = 5
67 end
68 inherited amgrMain: TVA508AccessibilityManager
69 Data = (
70 (
71 'Component = memText'
72 'Status = stsDefault')
73 (
74 'Component = txtStart'
75 'Status = stsDefault')
76 (
77 'Component = txtStop'
78 'Status = stsDefault')
79 (
80 'Component = memOrder'
81 'Status = stsDefault')
82 (
83 'Component = cmdAccept'
84 'Status = stsDefault')
85 (
86 'Component = cmdQuit'
87 'Status = stsDefault')
88 (
89 'Component = pnlMessage'
90 'Status = stsDefault')
91 (
92 'Component = memMessage'
93 'Status = stsDefault')
94 (
95 'Component = frmODText'
96 'Status = stsDefault'))
97 end
98end
Note: See TracBrowser for help on using the repository browser.