B
BRAHM
I am using this code to set up the splash screen startup time.
Protected Overrides Function OnInitialize( _
ByVal commandLineArgs As _
System.Collections.ObjectModel.ReadOnlyCollection(Of String) _
) As Boolean
' Set the display time to 5000 milliseconds (5 seconds).
Me.MinimumSplashScreenDisplayTime = 5000
Return MyBase.OnInitialize(commandLineArgs)
End Function
in ApplicationEvents.vb file.
I would like to have the mdi form loade only after splash screen timeout. is
it possible ? is there anyway ?
At this momment when I see the splash screen the mdi is loaded behind the
splah screen window.
Thanks,
BRAHM
Protected Overrides Function OnInitialize( _
ByVal commandLineArgs As _
System.Collections.ObjectModel.ReadOnlyCollection(Of String) _
) As Boolean
' Set the display time to 5000 milliseconds (5 seconds).
Me.MinimumSplashScreenDisplayTime = 5000
Return MyBase.OnInitialize(commandLineArgs)
End Function
in ApplicationEvents.vb file.
I would like to have the mdi form loade only after splash screen timeout. is
it possible ? is there anyway ?
At this momment when I see the splash screen the mdi is loaded behind the
splah screen window.
Thanks,
BRAHM