This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.vb
119 lines (114 loc) · 4.66 KB
/
Form1.Designer.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<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.lblUsername = New System.Windows.Forms.Label()
Me.tbUsername = New System.Windows.Forms.TextBox()
Me.lblPassword = New System.Windows.Forms.Label()
Me.tbPassword = New System.Windows.Forms.TextBox()
Me.cmdLogIn = New System.Windows.Forms.Button()
Me.cmdCancel = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'lblUsername
'
Me.lblUsername.AutoSize = True
Me.lblUsername.Location = New System.Drawing.Point(47, 46)
Me.lblUsername.Name = "lblUsername"
Me.lblUsername.Size = New System.Drawing.Size(102, 22)
Me.lblUsername.TabIndex = 0
Me.lblUsername.Text = "Username:"
'
'tbUsername
'
Me.tbUsername.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.tbUsername.Location = New System.Drawing.Point(186, 43)
Me.tbUsername.Name = "tbUsername"
Me.tbUsername.Size = New System.Drawing.Size(185, 29)
Me.tbUsername.TabIndex = 1
'
'lblPassword
'
Me.lblPassword.AutoSize = True
Me.lblPassword.Location = New System.Drawing.Point(47, 92)
Me.lblPassword.Name = "lblPassword"
Me.lblPassword.Size = New System.Drawing.Size(99, 22)
Me.lblPassword.TabIndex = 2
Me.lblPassword.Text = "Password:"
'
'tbPassword
'
Me.tbPassword.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest
Me.tbPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.tbPassword.Location = New System.Drawing.Point(186, 89)
Me.tbPassword.Name = "tbPassword"
Me.tbPassword.Size = New System.Drawing.Size(185, 29)
Me.tbPassword.TabIndex = 3
Me.tbPassword.UseSystemPasswordChar = True
'
'cmdLogIn
'
Me.cmdLogIn.Location = New System.Drawing.Point(186, 139)
Me.cmdLogIn.Name = "cmdLogIn"
Me.cmdLogIn.Size = New System.Drawing.Size(97, 30)
Me.cmdLogIn.TabIndex = 4
Me.cmdLogIn.Text = "Login"
Me.cmdLogIn.UseVisualStyleBackColor = True
'
'cmdCancel
'
Me.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.cmdCancel.Location = New System.Drawing.Point(289, 139)
Me.cmdCancel.Name = "cmdCancel"
Me.cmdCancel.Size = New System.Drawing.Size(82, 30)
Me.cmdCancel.TabIndex = 5
Me.cmdCancel.Text = "Cancel"
Me.cmdCancel.UseVisualStyleBackColor = True
'
'Form1
'
Me.AcceptButton = Me.cmdLogIn
Me.AutoScaleDimensions = New System.Drawing.SizeF(11.0!, 22.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.cmdCancel
Me.ClientSize = New System.Drawing.Size(430, 226)
Me.Controls.Add(Me.cmdCancel)
Me.Controls.Add(Me.cmdLogIn)
Me.Controls.Add(Me.tbPassword)
Me.Controls.Add(Me.lblPassword)
Me.Controls.Add(Me.tbUsername)
Me.Controls.Add(Me.lblUsername)
Me.Font = New System.Drawing.Font("Arial", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Margin = New System.Windows.Forms.Padding(6, 5, 6, 5)
Me.MaximizeBox = False
Me.Name = "Form1"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Login"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents lblUsername As Label
Friend WithEvents tbUsername As TextBox
Friend WithEvents lblPassword As Label
Friend WithEvents tbPassword As TextBox
Friend WithEvents cmdLogIn As Button
Friend WithEvents cmdCancel As Button
End Class