Project Title,Version not shown in Splash Screen in vb.net
i have developed a windows project. now i like to load splash screen with
project title and version before load my project..for that i am using
following coding in my form loading
Private Sub FileManager_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.Visible = False
Dim s = New SplashScreen1()
s.Show()
System.Threading.Thread.Sleep(2000)
s.Close()
End Sub
the splash screen is visible in form loading. but the project
title,version which i entered in splash screen is not shown? can anyone
help me what's the problem. what's wrong with my code.
No comments:
Post a Comment