Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() call End Sub 'Form overrides dispose to clean up the component list. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) 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. Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents btnMain As System.Windows.Forms.Button Friend WithEvents btnZig As System.Windows.Forms.Button Private Sub InitializeComponent() Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(Form1)) Me.Label1 = New System.Windows.Forms.Label Me.TextBox1 = New System.Windows.Forms.TextBox Me.Label2 = New System.Windows.Forms.Label Me.Label3 = New System.Windows.Forms.Label Me.btnMain = New System.Windows.Forms.Button Me.btnZig = New System.Windows.Forms.Button Me.SuspendLayout() ' 'Label1 ' Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.Label1.Location = New System.Drawing.Point(8, 8) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(280, 16) Me.Label1.TabIndex = 0 Me.Label1.Text = "In A.D. 2101 War was beginning." Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'TextBox1 ' Me.TextBox1.BackColor = System.Drawing.Color.Black Me.TextBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.TextBox1.ForeColor = System.Drawing.Color.DarkKhaki Me.TextBox1.Location = New System.Drawing.Point(8, 32) Me.TextBox1.Multiline = True Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(280, 72) Me.TextBox1.TabIndex = 1 Me.TextBox1.Text = "Captain: What happen ?" & Microsoft.VisualBasic.ChrW(13) & Microsoft.VisualBasic.ChrW(10) & "Mechanic: Somebody set up us the bomb." & Microsoft.VisualBasic.ChrW(13) & Microsoft.VisualBasic.ChrW(10) & "Operator: We get " & _ "signal." & Microsoft.VisualBasic.ChrW(13) & Microsoft.VisualBasic.ChrW(10) & "Captain: What !" Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'Label2 ' Me.Label2.BackColor = System.Drawing.Color.FromArgb(CType(64, Byte), CType(0, Byte), CType(0, Byte)) Me.Label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label2.ForeColor = System.Drawing.Color.White Me.Label2.Image = CType(resources.GetObject("Label2.Image"), System.Drawing.Image) Me.Label2.Location = New System.Drawing.Point(8, 136) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(280, 184) Me.Label2.TabIndex = 2 Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'Label3 ' Me.Label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.Label3.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label3.Location = New System.Drawing.Point(8, 112) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(280, 16) Me.Label3.TabIndex = 3 Me.Label3.Text = "Main Screen" Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'btnMain ' Me.btnMain.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.btnMain.Location = New System.Drawing.Point(8, 328) Me.btnMain.Name = "btnMain" Me.btnMain.Size = New System.Drawing.Size(280, 24) Me.btnMain.TabIndex = 4 Me.btnMain.Text = "Operator: Main screen turn on." ' 'btnZig ' Me.btnZig.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.btnZig.Location = New System.Drawing.Point(296, 8) Me.btnZig.Name = "btnZig" Me.btnZig.Size = New System.Drawing.Size(24, 344) Me.btnZig.TabIndex = 5 Me.btnZig.Text = "Take off every 'zig'!!" ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(328, 358) Me.Controls.Add(Me.btnZig) Me.Controls.Add(Me.btnMain) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.TextBox1) Me.Controls.Add(Me.Label1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "Form1" Me.Text = "Do you know what you doing?!" Me.ResumeLayout(False) End Sub #End Region Private Sub btnZig_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnZig.Click New(wmplayer) End Sub End Class