-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFormSplash.vb
More file actions
33 lines (24 loc) · 973 Bytes
/
FormSplash.vb
File metadata and controls
33 lines (24 loc) · 973 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
31
32
33
Public Class FormSplash
'Public Sub Animate()
' Dim DelayTime As Integer = 125
' PictureBox1.Image = My.Resources.splash_logo_02
' Application.DoEvents()
' System.Threading.Thread.Sleep(DelayTime)
' PictureBox1.Image = My.Resources.splash_logo_01
' Application.DoEvents()
' System.Threading.Thread.Sleep(DelayTime)
' PictureBox1.Image = My.Resources.splash_logo_02
' Application.DoEvents()
' System.Threading.Thread.Sleep(DelayTime)
' PictureBox1.Image = My.Resources.splash_logo_01
' Application.DoEvents()
' System.Threading.Thread.Sleep(DelayTime)
' PictureBox1.Image = My.Resources.splash_logo_02
' Application.DoEvents()
' System.Threading.Thread.Sleep(3 * DelayTime)
'End Sub
Public Sub UpdateStatus(Message As String)
TextBoxStatus.Text = String.Format(" {0}", Message)
Application.DoEvents()
End Sub
End Class