-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathAudio.Designer.vb
More file actions
136 lines (132 loc) · 6.16 KB
/
Audio.Designer.vb
File metadata and controls
136 lines (132 loc) · 6.16 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
130
131
132
133
134
135
136
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Audio
Inherits System.Windows.Forms.Form
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
<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
'Wird vom Windows Form-Designer benötigt.
Private components As System.ComponentModel.IContainer
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Audio))
Me.btn_startrecording = New System.Windows.Forms.Button()
Me.btn_stoprecording = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.PictureBox2 = New System.Windows.Forms.PictureBox()
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'btn_startrecording
'
Me.btn_startrecording.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!)
Me.btn_startrecording.Location = New System.Drawing.Point(211, 12)
Me.btn_startrecording.Name = "btn_startrecording"
Me.btn_startrecording.Size = New System.Drawing.Size(132, 29)
Me.btn_startrecording.TabIndex = 1
Me.btn_startrecording.Text = "Start Recording"
Me.btn_startrecording.UseVisualStyleBackColor = True
'
'btn_stoprecording
'
Me.btn_stoprecording.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!)
Me.btn_stoprecording.Location = New System.Drawing.Point(211, 47)
Me.btn_stoprecording.Name = "btn_stoprecording"
Me.btn_stoprecording.Size = New System.Drawing.Size(132, 29)
Me.btn_stoprecording.TabIndex = 2
Me.btn_stoprecording.Text = "Stop Recording"
Me.btn_stoprecording.UseVisualStyleBackColor = True
'
'Button1
'
Me.Button1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!)
Me.Button1.Location = New System.Drawing.Point(211, 82)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(132, 29)
Me.Button1.TabIndex = 3
Me.Button1.Text = "Download Audio"
Me.Button1.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(179, 116)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(190, 26)
Me.Label1.TabIndex = 4
Me.Label1.Text = "The recorded audio will be played and " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "saved automatically after download!"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(306, 177)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(33, 13)
Me.Label2.TabIndex = 5
Me.Label2.Text = "Idle..."
'
'PictureBox2
'
Me.PictureBox2.Image = CType(resources.GetObject("PictureBox2.Image"), System.Drawing.Image)
Me.PictureBox2.Location = New System.Drawing.Point(284, 176)
Me.PictureBox2.Name = "PictureBox2"
Me.PictureBox2.Size = New System.Drawing.Size(16, 16)
Me.PictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.PictureBox2.TabIndex = 6
Me.PictureBox2.TabStop = False
'
'PictureBox1
'
Me.PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), System.Drawing.Image)
Me.PictureBox1.Location = New System.Drawing.Point(-41, 12)
Me.PictureBox1.Name = "PictureBox1"
Me.PictureBox1.Size = New System.Drawing.Size(210, 178)
Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.PictureBox1.TabIndex = 0
Me.PictureBox1.TabStop = False
'
'Audio
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.Color.White
Me.ClientSize = New System.Drawing.Size(388, 201)
Me.Controls.Add(Me.PictureBox2)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.btn_stoprecording)
Me.Controls.Add(Me.btn_startrecording)
Me.Controls.Add(Me.PictureBox1)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximumSize = New System.Drawing.Size(404, 240)
Me.MinimumSize = New System.Drawing.Size(391, 240)
Me.Name = "Audio"
Me.Text = "Audio"
CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
Friend WithEvents btn_startrecording As System.Windows.Forms.Button
Friend WithEvents btn_stoprecording As System.Windows.Forms.Button
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents PictureBox2 As System.Windows.Forms.PictureBox
End Class