99 lines
3.1 KiB
VB.net
99 lines
3.1 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()
|
|
lblConnect = New Label()
|
|
lblDriveCaption = New Label()
|
|
ComboDrive = New ComboBox()
|
|
Button1 = New Button()
|
|
Button2 = New Button()
|
|
SuspendLayout()
|
|
'
|
|
' lblConnect
|
|
'
|
|
lblConnect.AutoSize = True
|
|
lblConnect.Location = New Point(25, 19)
|
|
lblConnect.Name = "lblConnect"
|
|
lblConnect.Size = New Size(41, 15)
|
|
lblConnect.TabIndex = 0
|
|
lblConnect.Text = "Label1"
|
|
'
|
|
' lblDriveCaption
|
|
'
|
|
lblDriveCaption.AutoSize = True
|
|
lblDriveCaption.Location = New Point(25, 52)
|
|
lblDriveCaption.Name = "lblDriveCaption"
|
|
lblDriveCaption.Size = New Size(41, 15)
|
|
lblDriveCaption.TabIndex = 1
|
|
lblDriveCaption.Text = "Label1"
|
|
'
|
|
' ComboDrive
|
|
'
|
|
ComboDrive.FormattingEnabled = True
|
|
ComboDrive.Location = New Point(121, 52)
|
|
ComboDrive.Name = "ComboDrive"
|
|
ComboDrive.Size = New Size(121, 23)
|
|
ComboDrive.TabIndex = 2
|
|
'
|
|
' Button1
|
|
'
|
|
Button1.Location = New Point(25, 100)
|
|
Button1.Name = "Button1"
|
|
Button1.Size = New Size(75, 23)
|
|
Button1.TabIndex = 3
|
|
Button1.Text = "Connect"
|
|
Button1.UseVisualStyleBackColor = True
|
|
'
|
|
' Button2
|
|
'
|
|
Button2.Location = New Point(121, 100)
|
|
Button2.Name = "Button2"
|
|
Button2.Size = New Size(75, 23)
|
|
Button2.TabIndex = 4
|
|
Button2.Text = "Disconnect"
|
|
Button2.UseVisualStyleBackColor = True
|
|
'
|
|
' Form1
|
|
'
|
|
AutoScaleDimensions = New SizeF(7F, 15F)
|
|
AutoScaleMode = AutoScaleMode.Font
|
|
ClientSize = New Size(800, 450)
|
|
Controls.Add(Button2)
|
|
Controls.Add(Button1)
|
|
Controls.Add(ComboDrive)
|
|
Controls.Add(lblDriveCaption)
|
|
Controls.Add(lblConnect)
|
|
Name = "Form1"
|
|
Text = "Form1"
|
|
ResumeLayout(False)
|
|
PerformLayout()
|
|
End Sub
|
|
|
|
Friend WithEvents lblConnect As Label
|
|
Friend WithEvents lblDriveCaption As Label
|
|
Friend WithEvents ComboDrive As ComboBox
|
|
Friend WithEvents Button1 As Button
|
|
Friend WithEvents Button2 As Button
|
|
|
|
End Class
|