source: trunk/Forms/UFormOperation.lfm

Last change on this file was 41, checked in by chronos, 5 years ago
  • Modified: Build under Lazarus 2.0.
  • Modified: Used .lrj files instead of .lrt files.
  • Modified: Removed TemplateGenerics package.
File size: 2.2 KB
Line 
1object FormOperation: TFormOperation
2 Left = 558
3 Height = 723
4 Top = 480
5 Width = 1088
6 Caption = 'Operation settings'
7 ClientHeight = 723
8 ClientWidth = 1088
9 DesignTimePPI = 144
10 LCLVersion = '2.0.0.4'
11 object ButtonOk: TButton
12 Left = 838
13 Height = 38
14 Top = 640
15 Width = 112
16 Caption = 'Ok'
17 ModalResult = 1
18 ParentFont = False
19 TabOrder = 0
20 end
21 object ButtonCancel: TButton
22 Left = 672
23 Height = 38
24 Top = 636
25 Width = 112
26 Caption = 'Cancel'
27 ModalResult = 2
28 ParentFont = False
29 TabOrder = 1
30 end
31 object ComboBoxRunMode: TComboBox
32 Left = 24
33 Height = 38
34 Top = 24
35 Width = 370
36 ItemHeight = 0
37 ItemIndex = 0
38 Items.Strings = (
39 'Read test'
40 'Write test'
41 )
42 OnChange = ComboBoxRunModeChange
43 ParentFont = False
44 Style = csDropDownList
45 TabOrder = 2
46 Text = 'Read test'
47 end
48 object Label9: TLabel
49 Left = 24
50 Height = 26
51 Top = 300
52 Width = 161
53 Caption = 'Write byte pattern:'
54 ParentColor = False
55 ParentFont = False
56 end
57 object EditPattern: TEdit
58 Left = 348
59 Height = 43
60 Top = 288
61 Width = 120
62 ParentFont = False
63 TabOrder = 3
64 Text = '0xff'
65 end
66 object Label2: TLabel
67 Left = 36
68 Height = 26
69 Top = 96
70 Width = 100
71 Caption = 'First sector:'
72 ParentColor = False
73 ParentFont = False
74 end
75 object SpinEditFirstSector: TSpinEdit
76 Left = 288
77 Height = 43
78 Top = 96
79 Width = 243
80 MaxValue = 100000
81 OnChange = SpinEditFirstSectorChange
82 ParentFont = False
83 TabOrder = 4
84 Value = 1
85 end
86 object SpinEditLastSector: TSpinEdit
87 Left = 288
88 Height = 43
89 Top = 156
90 Width = 243
91 MaxValue = 100000
92 OnChange = SpinEditLastSectorChange
93 ParentFont = False
94 TabOrder = 5
95 Value = 1
96 end
97 object Label3: TLabel
98 Left = 36
99 Height = 26
100 Top = 156
101 Width = 77
102 Caption = 'Last size:'
103 ParentColor = False
104 ParentFont = False
105 end
106 object CheckBoxRandomPattern: TCheckBox
107 Left = 24
108 Height = 30
109 Top = 240
110 Width = 165
111 Caption = 'Random pattern'
112 OnChange = CheckBoxRandomPatternChange
113 ParentFont = False
114 TabOrder = 6
115 end
116end
Note: See TracBrowser for help on using the repository browser.