-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm5.vb
More file actions
30 lines (22 loc) · 937 Bytes
/
Form5.vb
File metadata and controls
30 lines (22 loc) · 937 Bytes
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
Imports Microsoft.VisualBasic.ApplicationServices
Public Class shoecustomization
Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
End Sub
Private Sub shoecustomization_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub Label2_Click(sender As Object, e As EventArgs) Handles Label2.Click
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
TextBox1.Text = String.Empty
TextBox2.Text = String.Empty
TextBox4.Text = String.Empty
ComboBox1.Text = String.Empty
ComboBox2.Text = String.Empty
ComboBox3.Text = String.Empty
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Me.Hide()
Dim Dashboard As New Dashboard
Dashboard.Show()
End Sub
End Class