G
Guest
Hi
I want to add a splash screen to my application and searching this newsgroup
I found the following article
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/casoast.asp
helpful. The splash code requires calling Application.Run() to allow the main
form to continue working. But as my application can start with command line
arguments which requires the following code:
Shared Sub Main(ByVal args() As String)
Application.Run(new frmMain)
…
End Sub
and since .NET CF cannot do more than one Application.Run I’m stuck… anyone
know a workaround?
Thanks
Gavin
I want to add a splash screen to my application and searching this newsgroup
I found the following article
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/casoast.asp
helpful. The splash code requires calling Application.Run() to allow the main
form to continue working. But as my application can start with command line
arguments which requires the following code:
Shared Sub Main(ByVal args() As String)
Application.Run(new frmMain)
…
End Sub
and since .NET CF cannot do more than one Application.Run I’m stuck… anyone
know a workaround?
Thanks
Gavin