WindowsFormsApplicationBase.SplashScreen Property
Gets or sets the splash screen for this application.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
| Exception | Condition |
|---|---|
| ArgumentNullException |
The same value is assigned to this property and the MainForm property. |
The My.Application.SplashScreen property allows you to get or set the Form object that the application uses as the splash screen, the first graphic form that is displayed while an application is being started.
This property supports the Visual Basic Application model. For more information, see Overview of the Visual Basic Application Model.
The changes to this property are not persisted when the application closes. To change the splash screen permanently, you must change the setting in the Project Designer. For more information, see How to: Specify a Splash Screen for an Application (Visual Basic).
Availability by Project Type
|
Project type |
Available |
|
Windows Forms Application |
Yes |
|
Class Library |
No |
|
Console Application |
No |
|
Windows Forms Control Library |
No |
|
Web Control Library |
No |
|
Windows Service |
No |
|
Web Site |
No |
This example uses the My.Application.SplashScreen property and the My.Application.Startup event to update the splash screen with status information as the application starts.
Private Sub MyApplication_Startup( ByVal sender As Object, ByVal e As Microsoft.VisualBasic.ApplicationServices.StartupEventArgs ) Handles Me.Startup ' Get the splash screen. Dim splash As SplashScreen1 = CType(My.Application.SplashScreen, SplashScreen1) ' Display current status information. splash.Status = "Current user: " & My.User.Name End Sub
This example requires that the project have a splash screen named SplashScreen1. The splash screen needs to have a property named Status that updates its user interface.
You must enter this code in the Code Editor window for application events. For more information, see How to: Handle Application Events (Visual Basic).
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.