-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmMain.Designer.vb
114 lines (109 loc) · 4.44 KB
/
FrmMain.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Friend Class FrmMain
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.TxtCallsign = New System.Windows.Forms.TextBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.TxtPasscode = New System.Windows.Forms.TextBox()
Me.BtnGenerate = New System.Windows.Forms.Button()
Me.LblCpy = New System.Windows.Forms.Label()
Me.SuspendLayout
'
'Label1
'
Me.Label1.AutoSize = true
Me.Label1.Location = New System.Drawing.Point(11, 13)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(46, 13)
Me.Label1.TabIndex = 0
Me.Label1.Text = "Callsign:"
'
'TxtCallsign
'
Me.TxtCallsign.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TxtCallsign.Location = New System.Drawing.Point(57, 9)
Me.TxtCallsign.Name = "TxtCallsign"
Me.TxtCallsign.Size = New System.Drawing.Size(100, 20)
Me.TxtCallsign.TabIndex = 0
'
'Label2
'
Me.Label2.AutoSize = true
Me.Label2.Location = New System.Drawing.Point(11, 45)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(57, 13)
Me.Label2.TabIndex = 2
Me.Label2.Text = "Passcode:"
'
'TxtPasscode
'
Me.TxtPasscode.Location = New System.Drawing.Point(70, 41)
Me.TxtPasscode.Name = "TxtPasscode"
Me.TxtPasscode.Size = New System.Drawing.Size(74, 20)
Me.TxtPasscode.TabIndex = 1
'
'BtnGenerate
'
Me.BtnGenerate.Location = New System.Drawing.Point(47, 73)
Me.BtnGenerate.Name = "BtnGenerate"
Me.BtnGenerate.Size = New System.Drawing.Size(75, 23)
Me.BtnGenerate.TabIndex = 2
Me.BtnGenerate.Text = "Generate"
Me.BtnGenerate.UseVisualStyleBackColor = true
'
'LblCpy
'
Me.LblCpy.Font = New System.Drawing.Font("Microsoft Sans Serif", 6.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0,Byte))
Me.LblCpy.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128,Byte),Integer), CType(CType(64,Byte),Integer), CType(CType(0,Byte),Integer))
Me.LblCpy.Location = New System.Drawing.Point(7, 104)
Me.LblCpy.Name = "LblCpy"
Me.LblCpy.Size = New System.Drawing.Size(154, 15)
Me.LblCpy.TabIndex = 5
Me.LblCpy.Text = "©2018, PAROLE Software"
Me.LblCpy.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'FrmMain
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(169, 128)
Me.Controls.Add(Me.LblCpy)
Me.Controls.Add(Me.BtnGenerate)
Me.Controls.Add(Me.TxtPasscode)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.TxtCallsign)
Me.Controls.Add(Me.Label1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
Me.MaximizeBox = false
Me.Name = "FrmMain"
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "APRS Passcode Generator"
Me.ResumeLayout(false)
Me.PerformLayout
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents TxtCallsign As TextBox
Friend WithEvents Label2 As Label
Friend WithEvents TxtPasscode As TextBox
Friend WithEvents BtnGenerate As Button
Friend WithEvents LblCpy As Label
End Class