mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-03 14:07:48 +00:00
98 lines
3.7 KiB
VB.net
98 lines
3.7 KiB
VB.net
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
Partial Class Form1
|
|
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.TextBox1 = New System.Windows.Forms.TextBox()
|
|
Me.btnConnect = New System.Windows.Forms.Button()
|
|
Me.Label1 = New System.Windows.Forms.Label()
|
|
Me.ListBoxQuotesUpdate = New System.Windows.Forms.ListBox()
|
|
Me.btnDisconnect = New System.Windows.Forms.Button()
|
|
Me.SuspendLayout()
|
|
'
|
|
'TextBox1
|
|
'
|
|
Me.TextBox1.Location = New System.Drawing.Point(47, 12)
|
|
Me.TextBox1.Name = "TextBox1"
|
|
Me.TextBox1.Size = New System.Drawing.Size(100, 20)
|
|
Me.TextBox1.TabIndex = 0
|
|
Me.TextBox1.Text = "8222"
|
|
'
|
|
'btnConnect
|
|
'
|
|
Me.btnConnect.Location = New System.Drawing.Point(153, 10)
|
|
Me.btnConnect.Name = "btnConnect"
|
|
Me.btnConnect.Size = New System.Drawing.Size(75, 23)
|
|
Me.btnConnect.TabIndex = 1
|
|
Me.btnConnect.Text = "Connect"
|
|
Me.btnConnect.UseVisualStyleBackColor = True
|
|
'
|
|
'Label1
|
|
'
|
|
Me.Label1.AutoSize = True
|
|
Me.Label1.Location = New System.Drawing.Point(12, 15)
|
|
Me.Label1.Name = "Label1"
|
|
Me.Label1.Size = New System.Drawing.Size(29, 13)
|
|
Me.Label1.TabIndex = 2
|
|
Me.Label1.Text = "Port:"
|
|
'
|
|
'ListBoxQuotesUpdate
|
|
'
|
|
Me.ListBoxQuotesUpdate.FormattingEnabled = True
|
|
Me.ListBoxQuotesUpdate.Location = New System.Drawing.Point(12, 51)
|
|
Me.ListBoxQuotesUpdate.Name = "ListBoxQuotesUpdate"
|
|
Me.ListBoxQuotesUpdate.Size = New System.Drawing.Size(297, 199)
|
|
Me.ListBoxQuotesUpdate.TabIndex = 3
|
|
'
|
|
'btnDisconnect
|
|
'
|
|
Me.btnDisconnect.Location = New System.Drawing.Point(234, 10)
|
|
Me.btnDisconnect.Name = "btnDisconnect"
|
|
Me.btnDisconnect.Size = New System.Drawing.Size(75, 23)
|
|
Me.btnDisconnect.TabIndex = 4
|
|
Me.btnDisconnect.Text = "Disconnect"
|
|
Me.btnDisconnect.UseVisualStyleBackColor = True
|
|
'
|
|
'Form1
|
|
'
|
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
|
Me.ClientSize = New System.Drawing.Size(318, 262)
|
|
Me.Controls.Add(Me.btnDisconnect)
|
|
Me.Controls.Add(Me.ListBoxQuotesUpdate)
|
|
Me.Controls.Add(Me.Label1)
|
|
Me.Controls.Add(Me.btnConnect)
|
|
Me.Controls.Add(Me.TextBox1)
|
|
Me.Name = "Form1"
|
|
Me.Text = "Form1"
|
|
Me.ResumeLayout(False)
|
|
Me.PerformLayout()
|
|
|
|
End Sub
|
|
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
|
|
Friend WithEvents btnConnect As System.Windows.Forms.Button
|
|
Friend WithEvents Label1 As System.Windows.Forms.Label
|
|
Friend WithEvents ListBoxQuotesUpdate As System.Windows.Forms.ListBox
|
|
Friend WithEvents btnDisconnect As System.Windows.Forms.Button
|
|
|
|
End Class
|