-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtc_menuutama.vb
135 lines (81 loc) · 4.51 KB
/
tc_menuutama.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
Imports System.IO
Public Class tc_menuutama
Dim cursize As Double
Dim finsize As Double
Private Sub tc_menuutama_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
Application.Exit()
End Sub
Private Sub tc_menuutama_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Icon = tc_prepare.Icon
tc_shadow.SetShadowForm(Me)
'tampilkan candaan welcome
Me.showNotification("Coded by Wiji Fiko Teren")
'tampilkan menu gametools
Me.tc_panel_gametools.Visible = True
Me.tc_panel_gametools.BringToFront()
End Sub
Private Sub Guna2ControlBox2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2ControlBox2.Click
tc_animaten.SetAnimateWindow(Me)
End Sub
Private Sub Guna2Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button1.Click
End Sub
Private Sub tc_time_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tc_time.Tick
tc_tanggal.Text = Format(Now, "hh:mm:ss tt")
End Sub
Private Sub tools(ByVal srcPath As String, ByVal destPath As String)
End Sub
Private Sub tools_ProgressChanged(ByVal sender As Object, ByVal e As System.Net.DownloadProgressChangedEventArgs)
End Sub
Private Sub toolsj1t(ByVal srcPath As String, ByVal destPath As String)
End Sub
Private Sub toolsj1t_ProgressChanged(ByVal sender As Object, ByVal e As System.Net.DownloadProgressChangedEventArgs)
End Sub
Private Sub Guna2CircleButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2CircleButton1.Click
End Sub
Private Sub Guna2CircleButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2CircleButton2.Click
End Sub
Private Sub Guna2CircleButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2CircleButton3.Click
End Sub
Private Sub Guna2CircleButton4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2CircleButton4.Click
End Sub
Private Sub Guna2CircleButton5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2CircleButton5.Click
End Sub
Private Sub Guna2Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button2.Click
End Sub
Private Sub Guna2Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button7.Click
End Sub
Private Sub Guna2Button9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button9.Click
End Sub
Private Sub Guna2Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button8.Click
End Sub
Private Sub Guna2Button10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button10.Click
End Sub
Private Sub Guna2Button12_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button12.Click
End Sub
Private Sub Guna2Button11_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button11.Click
End Sub
Private Sub Guna2Button14_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button14.Click
End Sub
Private Sub Guna2Button13_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button13.Click
End Sub
Private Sub Guna2Button15_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button15.Click
End Sub
Private Function showNotification(text)
tc_alert.Timer1.Enabled = True
tc_alert.Guna2ProgressBar1.Value = 0
tc_alert.txt_alert.Text = text
tc_alert.Hide()
tc_alert.Show()
Return True
End Function
Private Sub Guna2Button16_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Guna2Button16.Click
End Sub
Private Sub Guna2Panel3_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Guna2Panel3.Paint
End Sub
Private Sub Guna2Button6_Click(sender As Object, e As EventArgs) Handles Guna2Button6.Click
End Sub
Private Sub Guna2Button17_Click(sender As Object, e As EventArgs) Handles Guna2Button17.Click
End Sub
Private Sub canda_DoWork(sender As Object, e As System.ComponentModel.DoWorkEventArgs)
End Sub
End Class