-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdmin.Designer.vb
More file actions
129 lines (124 loc) · 5.35 KB
/
Admin.Designer.vb
File metadata and controls
129 lines (124 loc) · 5.35 KB
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
120
121
122
123
124
125
126
127
128
129
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Admin
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.Label1 = New System.Windows.Forms.Label()
Me.txtPwd = New System.Windows.Forms.TextBox()
Me.btnLogin = New System.Windows.Forms.Button()
Me.btnBack = New System.Windows.Forms.Button()
Me.btnChange = New System.Windows.Forms.Button()
Me.lblAdmin = New System.Windows.Forms.Label()
Me.lblOldPwd = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(91, 83)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(114, 25)
Me.Label1.TabIndex = 0
Me.Label1.Text = "Password"
'
'txtPwd
'
Me.txtPwd.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtPwd.Location = New System.Drawing.Point(248, 83)
Me.txtPwd.Name = "txtPwd"
Me.txtPwd.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
Me.txtPwd.Size = New System.Drawing.Size(164, 22)
Me.txtPwd.TabIndex = 1
'
'btnLogin
'
Me.btnLogin.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.btnLogin.Location = New System.Drawing.Point(46, 185)
Me.btnLogin.Name = "btnLogin"
Me.btnLogin.Size = New System.Drawing.Size(119, 37)
Me.btnLogin.TabIndex = 2
Me.btnLogin.Text = "LOGIN"
Me.btnLogin.UseVisualStyleBackColor = True
'
'btnBack
'
Me.btnBack.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.btnBack.Location = New System.Drawing.Point(192, 185)
Me.btnBack.Name = "btnBack"
Me.btnBack.Size = New System.Drawing.Size(124, 37)
Me.btnBack.TabIndex = 3
Me.btnBack.Text = "BACK"
Me.btnBack.UseVisualStyleBackColor = True
'
'btnChange
'
Me.btnChange.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.btnChange.Location = New System.Drawing.Point(355, 186)
Me.btnChange.Name = "btnChange"
Me.btnChange.Size = New System.Drawing.Size(117, 34)
Me.btnChange.TabIndex = 4
Me.btnChange.Text = "CHANGE PASSWORD"
Me.btnChange.UseVisualStyleBackColor = True
'
'lblAdmin
'
Me.lblAdmin.AutoSize = True
Me.lblAdmin.BackColor = System.Drawing.SystemColors.ControlDarkDark
Me.lblAdmin.Font = New System.Drawing.Font("Microsoft Sans Serif", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lblAdmin.ForeColor = System.Drawing.SystemColors.ControlLight
Me.lblAdmin.Location = New System.Drawing.Point(173, 9)
Me.lblAdmin.Name = "lblAdmin"
Me.lblAdmin.Size = New System.Drawing.Size(160, 25)
Me.lblAdmin.TabIndex = 5
Me.lblAdmin.Text = "ADMIN LOGIN"
'
'lblOldPwd
'
Me.lblOldPwd.AutoSize = True
Me.lblOldPwd.Location = New System.Drawing.Point(19, 250)
Me.lblOldPwd.Name = "lblOldPwd"
Me.lblOldPwd.Size = New System.Drawing.Size(0, 13)
Me.lblOldPwd.TabIndex = 6
'
'Admin
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(518, 281)
Me.Controls.Add(Me.lblOldPwd)
Me.Controls.Add(Me.lblAdmin)
Me.Controls.Add(Me.btnChange)
Me.Controls.Add(Me.btnBack)
Me.Controls.Add(Me.btnLogin)
Me.Controls.Add(Me.txtPwd)
Me.Controls.Add(Me.Label1)
Me.Name = "Admin"
Me.Text = "Admin"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents txtPwd As TextBox
Friend WithEvents btnLogin As Button
Friend WithEvents btnBack As Button
Friend WithEvents btnChange As Button
Friend WithEvents lblAdmin As Label
Friend WithEvents lblOldPwd As Label
End Class