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
133 lines (133 loc) · 2.76 KB
/
Copy pathuSelectProcess.dfm
File metadata and controls
133 lines (133 loc) · 2.76 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
object dlgSelectProcess: TdlgSelectProcess
Left = 0
Top = 0
Caption = 'Process Memory Map - Select Process'
ClientHeight = 350
ClientWidth = 546
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 = (
546
350)
PixelsPerInch = 96
TextHeight = 13
object lvProcess: TListView
Left = 0
Top = 0
Width = 546
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>
Groups = <
item
Header = 'Newest Processes'
GroupID = 0
State = [lgsNormal]
HeaderAlign = taLeftJustify
FooterAlign = taLeftJustify
TitleImage = -1
end
item
Header = 'Other processes'
GroupID = 1
State = [lgsNormal]
HeaderAlign = taLeftJustify
FooterAlign = taLeftJustify
TitleImage = -1
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 = 317
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Refresh'
TabOrder = 1
OnClick = btnRefreshClick
end
object btnShowAll: TButton
Left = 170
Top = 317
Width = 129
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Show all processes'
ElevationRequired = True
TabOrder = 2
OnClick = btnShowAllClick
end
object btnCancel: TButton
Left = 463
Top = 317
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
object btnDefault: TButton
Left = 382
Top = 317
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
TabOrder = 4
OnClick = btnDefaultClick
end
object btnNew: TButton
Left = 89
Top = 317
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'New...'
TabOrder = 5
OnClick = btnNewClick
end
object il16: TImageList
ColorDepth = cd32Bit
Left = 16
Top = 32
end
object odNewProcess: TOpenDialog
Filter = 'Excutable file (*.exe)|*.exe|All files (*.*)|*.*'
Left = 72
Top = 32
end
end