-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDeleter.vb
43 lines (35 loc) · 1.46 KB
/
CDeleter.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
Public Class CDeleter
Private Sub BackToHome_Click(sender As Object, e As EventArgs) Handles BackToHome.Click
Me.Close()
Home.Show()
End Sub
Private Sub minimize_Click(sender As Object, e As EventArgs) Handles minimize.Click
Me.WindowState = FormWindowState.Minimized
End Sub
Private Sub Minimize_MouseEnter(sender As Object, e As EventArgs) Handles minimize.MouseHover
Style.Link_MouseHover(sender)
End Sub
Private Sub Minimize_MouseLeave(sender As Object, e As EventArgs) Handles minimize.MouseLeave
Style.Link(sender)
End Sub
Private Sub BackToHome_MouseHover(sender As Object, e As EventArgs) Handles BackToHome.MouseHover
Style.Link_MouseHover(sender)
End Sub
Private Sub BackToHome_MouseLeave(sender As Object, e As EventArgs) Handles BackToHome.MouseLeave
Style.Link(sender)
End Sub
Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click
TextBox1.Focus()
End Sub
Private Sub TextBox1_KeyDown(sender As Object, e As KeyEventArgs) Handles TextBox1.KeyDown
If (e.KeyCode = Keys.Enter) Then
SendKeys.Send("{TAB}")
End If
End Sub
Private Sub PictureBox3_Click(sender As Object, e As EventArgs) Handles PictureBox3.Click
TextBox3.Focus()
End Sub
Private Sub TextBox9_Click(sender As Object, e As EventArgs) Handles TextBox9.Click
TextBox9.Focus()
End Sub
End Class