_ Partial Class AddOrRemovePrograms Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ 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. _ Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AddOrRemovePrograms)) Me.Button1 = New System.Windows.Forms.Button() Me.Button2 = New System.Windows.Forms.Button() Me.CheckBox1 = New System.Windows.Forms.CheckBox() Me.GroupBox1 = New System.Windows.Forms.GroupBox() Me.ListBox1 = New System.Windows.Forms.ListBox() Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog() Me.GroupBox2 = New System.Windows.Forms.GroupBox() Me.Button3 = New System.Windows.Forms.Button() Me.TextBox2 = New System.Windows.Forms.TextBox() Me.Label2 = New System.Windows.Forms.Label() Me.TextBox1 = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() Me.GroupBox1.SuspendLayout() Me.GroupBox2.SuspendLayout() Me.SuspendLayout() ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(259, 205) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(81, 23) Me.Button1.TabIndex = 0 Me.Button1.Text = "Exit" Me.Button1.UseVisualStyleBackColor = True ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(172, 205) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(81, 23) Me.Button2.TabIndex = 1 Me.Button2.Text = "Save" Me.Button2.UseVisualStyleBackColor = True ' 'CheckBox1 ' Me.CheckBox1.AutoSize = True Me.CheckBox1.Checked = True Me.CheckBox1.CheckState = System.Windows.Forms.CheckState.Checked Me.CheckBox1.Location = New System.Drawing.Point(18, 209) Me.CheckBox1.Name = "CheckBox1" Me.CheckBox1.Size = New System.Drawing.Size(126, 17) Me.CheckBox1.TabIndex = 2 Me.CheckBox1.Text = "End program on exit?" Me.CheckBox1.UseVisualStyleBackColor = True ' 'GroupBox1 ' Me.GroupBox1.Controls.Add(Me.ListBox1) Me.GroupBox1.Location = New System.Drawing.Point(12, 24) Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.Size = New System.Drawing.Size(132, 116) Me.GroupBox1.TabIndex = 4 Me.GroupBox1.TabStop = False Me.GroupBox1.Text = "Programs" ' 'ListBox1 ' Me.ListBox1.FormattingEnabled = True Me.ListBox1.Items.AddRange(New Object() {"Program 1", "Program 2", "Program 3", "Program 4", "Program 5", "Program 6", "Program 7", "Program 8", "Program 9", "Program 10", "Program 11", "Program 12", "Program 13", "Program 14", "Program 15", "Program 16", "Program 17", "Program 18", "Program 19", "Program 20"}) Me.ListBox1.Location = New System.Drawing.Point(6, 21) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(115, 82) Me.ListBox1.TabIndex = 4 ' 'OpenFileDialog1 ' Me.OpenFileDialog1.FileName = "OpenFileDialog1" ' 'GroupBox2 ' Me.GroupBox2.Controls.Add(Me.Button3) Me.GroupBox2.Controls.Add(Me.TextBox2) Me.GroupBox2.Controls.Add(Me.Label2) Me.GroupBox2.Controls.Add(Me.TextBox1) Me.GroupBox2.Controls.Add(Me.Label1) Me.GroupBox2.Location = New System.Drawing.Point(162, 24) Me.GroupBox2.Name = "GroupBox2" Me.GroupBox2.Size = New System.Drawing.Size(178, 116) Me.GroupBox2.TabIndex = 5 Me.GroupBox2.TabStop = False Me.GroupBox2.Text = "Details" ' 'Button3 ' Me.Button3.Location = New System.Drawing.Point(132, 48) Me.Button3.Name = "Button3" Me.Button3.Size = New System.Drawing.Size(25, 21) Me.Button3.TabIndex = 4 Me.Button3.Text = "..." Me.Button3.UseVisualStyleBackColor = True ' 'TextBox2 ' Me.TextBox2.Location = New System.Drawing.Point(51, 49) Me.TextBox2.Name = "TextBox2" Me.TextBox2.Size = New System.Drawing.Size(106, 20) Me.TextBox2.TabIndex = 3 ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(7, 52) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(32, 13) Me.Label2.TabIndex = 2 Me.Label2.Text = "Path:" ' 'TextBox1 ' Me.TextBox1.Location = New System.Drawing.Point(51, 18) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(106, 20) Me.TextBox1.TabIndex = 1 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(7, 21) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(38, 13) Me.Label1.TabIndex = 0 Me.Label1.Text = "Name:" ' 'Label3 ' Me.Label3.ForeColor = System.Drawing.Color.Red Me.Label3.Location = New System.Drawing.Point(9, 156) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(328, 15) Me.Label3.TabIndex = 6 Me.Label3.Text = "The program must be restarted in order to show the changes." Me.Label3.Visible = False ' 'AddOrRemovePrograms ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(352, 240) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.GroupBox2) Me.Controls.Add(Me.GroupBox1) Me.Controls.Add(Me.CheckBox1) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.Button1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.Name = "AddOrRemovePrograms" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "Add or Remove Programs" Me.GroupBox1.ResumeLayout(False) Me.GroupBox2.ResumeLayout(False) Me.GroupBox2.PerformLayout() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox Friend WithEvents ListBox1 As System.Windows.Forms.ListBox Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox Friend WithEvents Button3 As System.Windows.Forms.Button Friend WithEvents TextBox2 As System.Windows.Forms.TextBox Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label End Class