Hi,
I've added a splash screen to my form-based app (vb.net 2008):
I'm starting my app with sub main() because this application works also as a GUI and as a console (non-GUI) application, so I'm not using the "splash screen" property in the project properties page.
I don't know why, but the splash screen is always "cut", and part of it is mixed up with the form that behind of it - please see attached example.
How can I solve it?
Thanks!
I've added a splash screen to my form-based app (vb.net 2008):
Code:
Sub main()
SplashScreen1.Show() ' splash form
.
.
.
Application.Run(Form1) ' the "real" app form
End Sub
I'm starting my app with sub main() because this application works also as a GUI and as a console (non-GUI) application, so I'm not using the "splash screen" property in the project properties page.
I don't know why, but the splash screen is always "cut", and part of it is mixed up with the form that behind of it - please see attached example.
How can I solve it?
Thanks!