forked from AlexanderBagel/ProcessMemoryMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuSelectProcess.dfm
More file actions
101 lines (101 loc) · 2.04 KB
/
Copy pathuSelectProcess.dfm
File metadata and controls
101 lines (101 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
object dlgSelectProcess: TdlgSelectProcess
Left = 0
Top = 0
Caption = 'Process Memory Map - Select Process'
ClientHeight = 350
ClientWidth = 481
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
DesignSize = (
481
350)
PixelsPerInch = 96
TextHeight = 13
object lvProcess: TListView
Left = 0
Top = 0
Width = 481
Height = 311
Align = alTop
Anchors = [akLeft, akTop, akRight, akBottom]
Columns = <
item
Caption = 'Name'
Width = 150
end
item
Alignment = taRightJustify
Caption = 'PID'
Width = 75
end
item
AutoSize = True
Caption = 'User'
end>
ReadOnly = True
RowSelect = True
SmallImages = il16
TabOrder = 0
ViewStyle = vsReport
OnColumnClick = lvProcessColumnClick
OnDblClick = lvProcessDblClick
OnMouseUp = lvProcessMouseUp
OnSelectItem = lvProcessSelectItem
end
object btnRefresh: TButton
Left = 8
Top = 318
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Refresh'
TabOrder = 1
OnClick = btnRefreshClick
end
object btnShowAll: TButton
Left = 96
Top = 318
Width = 129
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Show all processes'
ElevationRequired = True
TabOrder = 2
OnClick = btnShowAllClick
end
object btnCancel: TButton
Left = 398
Top = 317
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
object btnDefault: TButton
Left = 317
Top = 317
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
TabOrder = 4
OnClick = btnDefaultClick
end
object il16: TImageList
ColorDepth = cd32Bit
Left = 16
Top = 32
end
end