source: branches/ByteArray/Forms/FormMemory.lfm

Last change on this file was 10, checked in by chronos, 2 months ago
  • Modified: Improved serial console handling.
File size: 1.2 KB
Line 
1object FormMemory: TFormMemory
2 Left = 705
3 Height = 866
4 Top = 287
5 Width = 1150
6 Caption = 'Memory'
7 ClientHeight = 866
8 ClientWidth = 1150
9 DesignTimePPI = 144
10 Menu = MainMenu1
11 OnShow = FormShow
12 LCLVersion = '3.4.0.0'
13 object ListViewMemory: TListView
14 Left = 8
15 Height = 850
16 Top = 8
17 Width = 1134
18 Align = alClient
19 Anchors = [akTop, akLeft, akBottom]
20 BorderSpacing.Around = 8
21 Columns = <
22 item
23 Caption = 'Address'
24 Width = 120
25 end
26 item
27 Caption = 'Data'
28 Width = 643
29 end
30 item
31 Caption = 'ASCII'
32 Width = 356
33 end>
34 Font.Height = -20
35 Font.Name = 'Liberation Mono'
36 OwnerData = True
37 ParentFont = False
38 TabOrder = 0
39 ViewStyle = vsReport
40 OnData = ListViewMemoryData
41 end
42 object Timer1: TTimer
43 Interval = 500
44 OnTimer = Timer1Timer
45 Left = 469
46 Top = 205
47 end
48 object MainMenu1: TMainMenu
49 Left = 246
50 Top = 252
51 object MenuItem1: TMenuItem
52 Caption = 'Tools'
53 object MenuItemClear: TMenuItem
54 Caption = 'Clear'
55 OnClick = MenuItemClearClick
56 end
57 end
58 end
59end
Note: See TracBrowser for help on using the repository browser.