first commit
This commit is contained in:
commit
a695ad2cb9
112 changed files with 18921 additions and 0 deletions
120
AAAAAAAAAAAAA/Agreement.Designer.vb
generated
Normal file
120
AAAAAAAAAAAAA/Agreement.Designer.vb
generated
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class Agreement
|
||||
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(Agreement))
|
||||
Me.Button1 = New System.Windows.Forms.Button()
|
||||
Me.CheckBox1 = New System.Windows.Forms.CheckBox()
|
||||
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
|
||||
Me.TextBox1 = New System.Windows.Forms.TextBox()
|
||||
Me.lbSub = New System.Windows.Forms.Label()
|
||||
Me.lbTitle = New System.Windows.Forms.Label()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'Button1
|
||||
'
|
||||
Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
||||
Me.Button1.Location = New System.Drawing.Point(328, 170)
|
||||
Me.Button1.Name = "Button1"
|
||||
Me.Button1.Size = New System.Drawing.Size(75, 23)
|
||||
Me.Button1.TabIndex = 3
|
||||
Me.Button1.Text = "Go"
|
||||
Me.Button1.UseVisualStyleBackColor = True
|
||||
'
|
||||
'CheckBox1
|
||||
'
|
||||
Me.CheckBox1.AutoSize = True
|
||||
Me.CheckBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup
|
||||
Me.CheckBox1.Location = New System.Drawing.Point(12, 173)
|
||||
Me.CheckBox1.Name = "CheckBox1"
|
||||
Me.CheckBox1.Size = New System.Drawing.Size(57, 17)
|
||||
Me.CheckBox1.TabIndex = 4
|
||||
Me.CheckBox1.Text = "I agree"
|
||||
Me.CheckBox1.UseVisualStyleBackColor = True
|
||||
'
|
||||
'TextBox1
|
||||
'
|
||||
Me.TextBox1.BackColor = System.Drawing.Color.Black
|
||||
Me.TextBox1.ForeColor = System.Drawing.Color.White
|
||||
Me.TextBox1.Location = New System.Drawing.Point(12, 75)
|
||||
Me.TextBox1.Multiline = True
|
||||
Me.TextBox1.Name = "TextBox1"
|
||||
Me.TextBox1.ReadOnly = True
|
||||
Me.TextBox1.Size = New System.Drawing.Size(391, 88)
|
||||
Me.TextBox1.TabIndex = 5
|
||||
Me.TextBox1.Text = resources.GetString("TextBox1.Text")
|
||||
'
|
||||
'lbSub
|
||||
'
|
||||
Me.lbSub.AutoSize = True
|
||||
Me.lbSub.Font = New System.Drawing.Font("Segoe UI", 10.0!)
|
||||
Me.lbSub.ForeColor = System.Drawing.Color.White
|
||||
Me.lbSub.Location = New System.Drawing.Point(8, 9)
|
||||
Me.lbSub.Name = "lbSub"
|
||||
Me.lbSub.Size = New System.Drawing.Size(99, 19)
|
||||
Me.lbSub.TabIndex = 13
|
||||
Me.lbSub.Text = "THECOOLCAT!"
|
||||
'
|
||||
'lbTitle
|
||||
'
|
||||
Me.lbTitle.AutoSize = True
|
||||
Me.lbTitle.Font = New System.Drawing.Font("Segoe UI", 30.0!)
|
||||
Me.lbTitle.ForeColor = System.Drawing.Color.White
|
||||
Me.lbTitle.Location = New System.Drawing.Point(3, 18)
|
||||
Me.lbTitle.Name = "lbTitle"
|
||||
Me.lbTitle.Size = New System.Drawing.Size(362, 54)
|
||||
Me.lbTitle.TabIndex = 15
|
||||
Me.lbTitle.Text = "license+agreement"
|
||||
'
|
||||
'Agreement
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.BackColor = System.Drawing.Color.Black
|
||||
Me.ClientSize = New System.Drawing.Size(415, 200)
|
||||
Me.Controls.Add(Me.lbSub)
|
||||
Me.Controls.Add(Me.lbTitle)
|
||||
Me.Controls.Add(Me.TextBox1)
|
||||
Me.Controls.Add(Me.CheckBox1)
|
||||
Me.Controls.Add(Me.Button1)
|
||||
Me.ForeColor = System.Drawing.Color.White
|
||||
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 = "Agreement"
|
||||
Me.ShowIcon = False
|
||||
Me.ShowInTaskbar = False
|
||||
Me.Text = "Contract to use my super application"
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
Friend WithEvents Button1 As System.Windows.Forms.Button
|
||||
Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox
|
||||
Friend WithEvents Timer1 As System.Windows.Forms.Timer
|
||||
Friend WithEvents TextBox1 As TextBox
|
||||
Friend WithEvents lbSub As Label
|
||||
Friend WithEvents lbTitle As Label
|
||||
End Class
|
||||
Reference in a new issue