-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSplashScreen1.vb
125 lines (99 loc) · 5.4 KB
/
SplashScreen1.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
Public NotInheritable Class SplashScreen1
Private Sub SplashScreen1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'Set up the dialog text at runtime according to the application's assembly information.
'Application title
If My.Application.Info.Title <> "" Then
ApplicationTitle.Text = My.Application.Info.Title & "'s loading ..."
Else
'If the application title is missing, use the application name, without the extension
ApplicationTitle.Text = System.IO.Path.GetFileNameWithoutExtension(My.Application.Info.AssemblyName)
End If
'Format the version information using the text set into the Version control at design time as the
' formatting string. This allows for effective localization if desired.
' Build and revision information could be included by using the following code and changing the
' Version control's designtime text to "Version {0}.{1:00}.{2}.{3}" or something similar. See
' String.Format() in Help for more information.
'
' Version.Text = System.String.Format(Version.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor, My.Application.Info.Version.Build, My.Application.Info.Version.Revision)
Version.Text = Application.ProductVersion
'Copyright info
Copyright.Text = "Thanks to HyperFreeSpin forums !"
'xx.Show()
End Sub
Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
Process.Start(LinkLabel1.Text)
End Sub
Private Sub LinkLabel1_MouseMove(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel1.MouseMove
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel1_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel1.MouseLeave
Me.Cursor = Cursors.Default
Application.DoEvents()
End Sub
Private Sub LinkLabel1_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel1.MouseEnter
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel1.MouseHover
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel2_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel2.LinkClicked
Process.Start(LinkLabel2.Text)
End Sub
Private Sub LinkLabel2_MouseMove(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel2.MouseMove
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel2_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel2.MouseLeave
Me.Cursor = Cursors.Default
Application.DoEvents()
End Sub
Private Sub LinkLabel2_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel2.MouseEnter
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel2_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel2.MouseHover
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel3_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel3.LinkClicked
Process.Start(LinkLabel3.Text)
End Sub
Private Sub LinkLabel3_MouseMove(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel3.MouseMove
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel3_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel3.MouseLeave
Me.Cursor = Cursors.Default
Application.DoEvents()
End Sub
Private Sub LinkLabel3_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel3.MouseEnter
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel3_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel3.MouseHover
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel4_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel4.LinkClicked
Process.Start(LinkLabel4.Text)
End Sub
Private Sub LinkLabel4_MouseMove(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel4.MouseMove
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel4_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel4.MouseLeave
Me.Cursor = Cursors.Default
Application.DoEvents()
End Sub
Private Sub LinkLabel4_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel4.MouseEnter
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
Private Sub LinkLabel4_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel4.MouseHover
Me.Cursor = Cursors.Hand
Application.DoEvents()
End Sub
End Class