-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainForm.Designer.vb
336 lines (331 loc) · 13.8 KB
/
MainForm.Designer.vb
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class MainForm
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainForm))
Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.Label2 = New System.Windows.Forms.Label()
Me.RadioButton1 = New System.Windows.Forms.RadioButton()
Me.RadioButton2 = New System.Windows.Forms.RadioButton()
Me.RadioButton3 = New System.Windows.Forms.RadioButton()
Me.RadioButton4 = New System.Windows.Forms.RadioButton()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.CheckedListBox1 = New System.Windows.Forms.CheckedListBox()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.Button2 = New System.Windows.Forms.Button()
Me.Button5 = New System.Windows.Forms.Button()
Me.NotifyIcon1 = New System.Windows.Forms.NotifyIcon(Me.components)
Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.ToolStripMenuItem1 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem2 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem3 = New System.Windows.Forms.ToolStripMenuItem()
Me.Label4 = New System.Windows.Forms.Label()
Me.Label1 = New System.Windows.Forms.Label()
Me.Button3 = New System.Windows.Forms.Button()
Me.TextBox2 = New System.Windows.Forms.TextBox()
Me.CheckedListBox2 = New System.Windows.Forms.CheckedListBox()
Me.Label6 = New System.Windows.Forms.Label()
Me.Button6 = New System.Windows.Forms.Button()
Me.Button7 = New System.Windows.Forms.Button()
Me.Button8 = New System.Windows.Forms.Button()
Me.Label3 = New System.Windows.Forms.Label()
Me.ContextMenuStrip1.SuspendLayout()
Me.SuspendLayout()
'
'OpenFileDialog1
'
Me.OpenFileDialog1.FileName = "OpenFileDialog1"
Me.OpenFileDialog1.Filter = "Executable Files|*.exe"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(12, 224)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(193, 13)
Me.Label2.TabIndex = 8
Me.Label2.Text = "Stealing processes (check to suspend):"
'
'RadioButton1
'
Me.RadioButton1.AutoSize = True
Me.RadioButton1.Checked = True
Me.RadioButton1.Location = New System.Drawing.Point(12, 357)
Me.RadioButton1.Name = "RadioButton1"
Me.RadioButton1.Size = New System.Drawing.Size(147, 17)
Me.RadioButton1.TabIndex = 11
Me.RadioButton1.TabStop = True
Me.RadioButton1.Text = "Recommended (kernel32)"
Me.RadioButton1.UseVisualStyleBackColor = True
'
'RadioButton2
'
Me.RadioButton2.AutoSize = True
Me.RadioButton2.Location = New System.Drawing.Point(12, 380)
Me.RadioButton2.Name = "RadioButton2"
Me.RadioButton2.Size = New System.Drawing.Size(88, 17)
Me.RadioButton2.TabIndex = 12
Me.RadioButton2.Text = "Legacy (ntdll)"
Me.RadioButton2.UseVisualStyleBackColor = True
'
'RadioButton3
'
Me.RadioButton3.AutoSize = True
Me.RadioButton3.Location = New System.Drawing.Point(183, 357)
Me.RadioButton3.Name = "RadioButton3"
Me.RadioButton3.Size = New System.Drawing.Size(123, 17)
Me.RadioButton3.TabIndex = 13
Me.RadioButton3.Text = "Alternative (dbgproc)"
Me.RadioButton3.UseVisualStyleBackColor = True
'
'RadioButton4
'
Me.RadioButton4.AutoSize = True
Me.RadioButton4.Location = New System.Drawing.Point(183, 380)
Me.RadioButton4.Name = "RadioButton4"
Me.RadioButton4.Size = New System.Drawing.Size(78, 17)
Me.RadioButton4.TabIndex = 15
Me.RadioButton4.TabStop = True
Me.RadioButton4.Text = "Kill process"
Me.RadioButton4.UseVisualStyleBackColor = True
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(12, 199)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(379, 20)
Me.TextBox1.TabIndex = 16
'
'CheckedListBox1
'
Me.CheckedListBox1.CheckOnClick = True
Me.CheckedListBox1.FormattingEnabled = True
Me.CheckedListBox1.Items.AddRange(New Object() {"explorer", "idle", "csrss"})
Me.CheckedListBox1.Location = New System.Drawing.Point(12, 241)
Me.CheckedListBox1.Name = "CheckedListBox1"
Me.CheckedListBox1.Size = New System.Drawing.Size(456, 94)
Me.CheckedListBox1.TabIndex = 18
'
'Timer1
'
Me.Timer1.Enabled = True
Me.Timer1.Interval = 1000
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(359, 341)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(109, 23)
Me.Button2.TabIndex = 22
Me.Button2.Text = "Unlock explorer"
Me.Button2.UseVisualStyleBackColor = True
'
'Button5
'
Me.Button5.Location = New System.Drawing.Point(359, 370)
Me.Button5.Name = "Button5"
Me.Button5.Size = New System.Drawing.Size(109, 23)
Me.Button5.TabIndex = 23
Me.Button5.Text = "Restore resolution"
Me.Button5.UseVisualStyleBackColor = True
'
'NotifyIcon1
'
Me.NotifyIcon1.ContextMenuStrip = Me.ContextMenuStrip1
Me.NotifyIcon1.Icon = CType(resources.GetObject("NotifyIcon1.Icon"), System.Drawing.Icon)
Me.NotifyIcon1.Text = "PalletestealerSuspender"
Me.NotifyIcon1.Visible = True
'
'ContextMenuStrip1
'
Me.ContextMenuStrip1.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripMenuItem1, Me.ToolStripMenuItem2, Me.ToolStripMenuItem3})
Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
Me.ContextMenuStrip1.Size = New System.Drawing.Size(137, 70)
'
'ToolStripMenuItem1
'
Me.ToolStripMenuItem1.Name = "ToolStripMenuItem1"
Me.ToolStripMenuItem1.Size = New System.Drawing.Size(136, 22)
Me.ToolStripMenuItem1.Text = "Games"
'
'ToolStripMenuItem2
'
Me.ToolStripMenuItem2.Name = "ToolStripMenuItem2"
Me.ToolStripMenuItem2.Size = New System.Drawing.Size(136, 22)
Me.ToolStripMenuItem2.Text = "Configure..."
'
'ToolStripMenuItem3
'
Me.ToolStripMenuItem3.Name = "ToolStripMenuItem3"
Me.ToolStripMenuItem3.Size = New System.Drawing.Size(136, 22)
Me.ToolStripMenuItem3.Text = "Quit"
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Location = New System.Drawing.Point(12, 182)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(43, 13)
Me.Label4.TabIndex = 17
Me.Label4.Text = "Start in:"
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(12, 142)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(58, 13)
Me.Label1.TabIndex = 7
Me.Label1.Text = "Add game:"
'
'Button3
'
Me.Button3.Location = New System.Drawing.Point(397, 156)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(71, 23)
Me.Button3.TabIndex = 5
Me.Button3.Text = "Browse..."
Me.Button3.UseVisualStyleBackColor = True
'
'TextBox2
'
Me.TextBox2.Location = New System.Drawing.Point(12, 159)
Me.TextBox2.Name = "TextBox2"
Me.TextBox2.Size = New System.Drawing.Size(379, 20)
Me.TextBox2.TabIndex = 4
'
'CheckedListBox2
'
Me.CheckedListBox2.FormattingEnabled = True
Me.CheckedListBox2.Location = New System.Drawing.Point(12, 26)
Me.CheckedListBox2.Name = "CheckedListBox2"
Me.CheckedListBox2.Size = New System.Drawing.Size(456, 109)
Me.CheckedListBox2.TabIndex = 25
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Location = New System.Drawing.Point(12, 9)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(273, 13)
Me.Label6.TabIndex = 26
Me.Label6.Text = "Game list (check to monitor, double click removes entry):"
'
'Button6
'
Me.Button6.Location = New System.Drawing.Point(397, 197)
Me.Button6.Name = "Button6"
Me.Button6.Size = New System.Drawing.Size(71, 23)
Me.Button6.TabIndex = 27
Me.Button6.Text = "Add"
Me.Button6.UseVisualStyleBackColor = True
'
'Button7
'
Me.Button7.Location = New System.Drawing.Point(12, 417)
Me.Button7.Name = "Button7"
Me.Button7.Size = New System.Drawing.Size(75, 23)
Me.Button7.TabIndex = 28
Me.Button7.Text = "Quit"
Me.Button7.UseVisualStyleBackColor = True
'
'Button8
'
Me.Button8.Location = New System.Drawing.Point(359, 417)
Me.Button8.Name = "Button8"
Me.Button8.Size = New System.Drawing.Size(109, 23)
Me.Button8.TabIndex = 29
Me.Button8.Text = "Save and Hide"
Me.Button8.UseVisualStyleBackColor = True
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(12, 340)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(78, 13)
Me.Label3.TabIndex = 30
Me.Label3.Text = "Method to use:"
'
'MainForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(480, 450)
Me.ContextMenuStrip = Me.ContextMenuStrip1
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.Button6)
Me.Controls.Add(Me.Label6)
Me.Controls.Add(Me.Button3)
Me.Controls.Add(Me.Button8)
Me.Controls.Add(Me.CheckedListBox2)
Me.Controls.Add(Me.Button5)
Me.Controls.Add(Me.Button7)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.RadioButton1)
Me.Controls.Add(Me.RadioButton2)
Me.Controls.Add(Me.RadioButton3)
Me.Controls.Add(Me.RadioButton4)
Me.Controls.Add(Me.CheckedListBox1)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.TextBox2)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "MainForm"
Me.ShowInTaskbar = False
Me.Text = "Palettestealer Suspender"
Me.ContextMenuStrip1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents RadioButton1 As System.Windows.Forms.RadioButton
Friend WithEvents RadioButton2 As System.Windows.Forms.RadioButton
Friend WithEvents RadioButton3 As System.Windows.Forms.RadioButton
Friend WithEvents RadioButton4 As System.Windows.Forms.RadioButton
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents CheckedListBox1 As System.Windows.Forms.CheckedListBox
Friend WithEvents Timer1 As System.Windows.Forms.Timer
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents Button5 As System.Windows.Forms.Button
Friend WithEvents NotifyIcon1 As System.Windows.Forms.NotifyIcon
Friend WithEvents ContextMenuStrip1 As System.Windows.Forms.ContextMenuStrip
Friend WithEvents ToolStripMenuItem1 As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents ToolStripMenuItem2 As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents ToolStripMenuItem3 As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Button3 As System.Windows.Forms.Button
Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
Friend WithEvents CheckedListBox2 As System.Windows.Forms.CheckedListBox
Friend WithEvents Label6 As System.Windows.Forms.Label
Friend WithEvents Button6 As System.Windows.Forms.Button
Friend WithEvents Button7 As System.Windows.Forms.Button
Friend WithEvents Button8 As System.Windows.Forms.Button
Friend WithEvents Label3 As System.Windows.Forms.Label
End Class