source: branches/UltimatOS/Forms/UFormMemory.lfm

Last change on this file was 30, checked in by chronos, 2 years ago
  • Modified: Improved sample code execution.
  • Added: Memory map form.
File size: 738 bytes
Line 
1object FormMemory: TFormMemory
2 Left = 456
3 Height = 619
4 Top = 226
5 Width = 736
6 Caption = 'Memory'
7 ClientHeight = 619
8 ClientWidth = 736
9 DesignTimePPI = 125
10 OnShow = FormShow
11 LCLVersion = '2.2.0.4'
12 object ListView1: TListView
13 Left = 8
14 Height = 606
15 Top = 8
16 Width = 726
17 Anchors = [akTop, akLeft, akRight, akBottom]
18 Columns = <
19 item
20 Caption = 'Address'
21 Width = 100
22 end
23 item
24 Caption = 'Data'
25 Width = 400
26 end
27 item
28 Caption = 'Text'
29 Width = 211
30 end>
31 Font.Name = 'Liberation Mono'
32 OwnerData = True
33 ParentFont = False
34 TabOrder = 0
35 ViewStyle = vsReport
36 OnData = ListView1Data
37 end
38end
Note: See TracBrowser for help on using the repository browser.