forked from Anarchy4v/IS104
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmSignUp.Designer.vb
102 lines (98 loc) · 4.22 KB
/
frmSignUp.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class frmSignUp
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.txtEmail = New System.Windows.Forms.TextBox()
Me.txtPassword = New System.Windows.Forms.TextBox()
Me.txtConfirm = New System.Windows.Forms.TextBox()
Me.btnSignUp = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'txtEmail
'
Me.txtEmail.Location = New System.Drawing.Point(430, 177)
Me.txtEmail.Name = "txtEmail"
Me.txtEmail.Size = New System.Drawing.Size(193, 20)
Me.txtEmail.TabIndex = 2
'
'txtPassword
'
Me.txtPassword.Location = New System.Drawing.Point(430, 244)
Me.txtPassword.Name = "txtPassword"
Me.txtPassword.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
Me.txtPassword.Size = New System.Drawing.Size(193, 20)
Me.txtPassword.TabIndex = 3
'
'txtConfirm
'
Me.txtConfirm.Location = New System.Drawing.Point(430, 308)
Me.txtConfirm.Name = "txtConfirm"
Me.txtConfirm.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
Me.txtConfirm.Size = New System.Drawing.Size(193, 20)
Me.txtConfirm.TabIndex = 4
'
'btnSignUp
'
Me.btnSignUp.BackColor = System.Drawing.Color.Firebrick
Me.btnSignUp.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.btnSignUp.ForeColor = System.Drawing.SystemColors.Control
Me.btnSignUp.Location = New System.Drawing.Point(481, 345)
Me.btnSignUp.Name = "btnSignUp"
Me.btnSignUp.Size = New System.Drawing.Size(91, 40)
Me.btnSignUp.TabIndex = 5
Me.btnSignUp.Text = "SIGN UP"
Me.btnSignUp.UseVisualStyleBackColor = False
'
'Button1
'
Me.Button1.BackColor = System.Drawing.Color.Firebrick
Me.Button1.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button1.ForeColor = System.Drawing.Color.White
Me.Button1.Location = New System.Drawing.Point(430, 391)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(193, 39)
Me.Button1.TabIndex = 9
Me.Button1.Text = "Already have account?"
Me.Button1.UseVisualStyleBackColor = False
'
'frmSignUp
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackgroundImage = Global.PharmacyandMedicine.My.Resources.Resources.Create_An_Account_Page
Me.ClientSize = New System.Drawing.Size(674, 482)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.btnSignUp)
Me.Controls.Add(Me.txtConfirm)
Me.Controls.Add(Me.txtPassword)
Me.Controls.Add(Me.txtEmail)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Name = "frmSignUp"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents txtEmail As TextBox
Friend WithEvents txtPassword As TextBox
Friend WithEvents txtConfirm As TextBox
Friend WithEvents btnSignUp As Button
Friend WithEvents Button1 As Button
End Class