1 <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
2 Partial Class SimpleChat
3 Inherits System.Windows.Forms.Form
5 'Form overrides dispose to clean up the component list.
6 <System.Diagnostics.DebuggerNonUserCode()> _
7 Protected Overrides Sub Dispose(ByVal disposing As Boolean)
9 If disposing AndAlso components IsNot Nothing Then
13 MyBase.Dispose(disposing)
17 'Required by the Windows Form Designer
18 Private components As System.ComponentModel.IContainer
20 'NOTE: The following procedure is required by the Windows Form Designer
21 'It can be modified using the Windows Form Designer.
22 'Do not modify it using the code editor.
23 <System.Diagnostics.DebuggerStepThrough()> _
24 Private Sub InitializeComponent()
25 Me.TextBox1 = New System.Windows.Forms.TextBox
26 Me.TextBox2 = New System.Windows.Forms.TextBox
27 Me.TalkTo = New System.Windows.Forms.Label
28 Me.ComboBox1 = New System.Windows.Forms.ComboBox
29 Me.Button1 = New System.Windows.Forms.Button
34 Me.TextBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
35 Me.TextBox1.Location = New System.Drawing.Point(12, 12)
36 Me.TextBox1.Multiline = True
37 Me.TextBox1.Name = "TextBox1"
38 Me.TextBox1.ReadOnly = True
39 Me.TextBox1.Size = New System.Drawing.Size(459, 362)
40 Me.TextBox1.TabIndex = 0
44 Me.TextBox2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
45 Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
46 Me.TextBox2.Location = New System.Drawing.Point(13, 431)
47 Me.TextBox2.Name = "TextBox2"
48 Me.TextBox2.Size = New System.Drawing.Size(374, 20)
49 Me.TextBox2.TabIndex = 1
53 Me.TalkTo.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
54 Me.TalkTo.AutoSize = True
55 Me.TalkTo.Location = New System.Drawing.Point(13, 395)
56 Me.TalkTo.Name = "TalkTo"
57 Me.TalkTo.Size = New System.Drawing.Size(43, 13)
58 Me.TalkTo.TabIndex = 2
59 Me.TalkTo.Text = "Talk to:"
63 Me.ComboBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
64 Me.ComboBox1.FormattingEnabled = True
65 Me.ComboBox1.Location = New System.Drawing.Point(63, 392)
66 Me.ComboBox1.Name = "ComboBox1"
67 Me.ComboBox1.Size = New System.Drawing.Size(324, 21)
68 Me.ComboBox1.TabIndex = 3
72 Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
73 Me.Button1.Location = New System.Drawing.Point(409, 430)
74 Me.Button1.Name = "Button1"
75 Me.Button1.Size = New System.Drawing.Size(59, 23)
76 Me.Button1.TabIndex = 4
77 Me.Button1.Text = "Send"
78 Me.Button1.UseVisualStyleBackColor = True
82 Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
83 Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
84 Me.ClientSize = New System.Drawing.Size(483, 462)
85 Me.Controls.Add(Me.Button1)
86 Me.Controls.Add(Me.ComboBox1)
87 Me.Controls.Add(Me.TalkTo)
88 Me.Controls.Add(Me.TextBox2)
89 Me.Controls.Add(Me.TextBox1)
90 Me.Name = "SimpleChat"
91 Me.Text = "SimpleChat.VB"
92 Me.ResumeLayout(False)
96 Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
97 Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
98 Friend WithEvents TalkTo As System.Windows.Forms.Label
99 Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
100 Friend WithEvents Button1 As System.Windows.Forms.Button