views:

705

answers:

1

I understand this might be asked before :

http://stackoverflow.com/questions/403202/show-a-loading-screen-in-vb-net

But anyone can provide me something like :

' Show Loading Screen  
  --> Do anything like initializing or updating UI
' Close Loading Screen

In this case I can fire (Show Loading Screen) anywhere in the form I want,
Like

Dim LoadingScreen as New LoadingScreen
LoadingScreen.ShowLoading()
' Do things
'
'
LoadingScreen.StopLoading()
A: 

I seem to have found the answer.

http://www.codeproject.com/KB/dotnet/Yet%5FAnother%5FSplash%5FScreen.aspx

henry