Tagged Questions

The splash screen is a rectangular or full screen image which appears while a software product is loading (OS, CAD, game, etc). Often it contains a progress bar, indicating the loading phases.

learn more… | top users | synonyms (1)

33
votes
10answers
18k views

Multi-Threaded splash screen in c#?

I know this question is all over the net, but I can't quite find what I am looking for and quite frankly this community seems more sophisticated than most I have seen. I want a splash screen to show ...
30
votes
5answers
39k views

splash screen for Universal application for ipad and iphone

I am create an universal application using iphone sdk3.2. i want to know for ipad and iphone do i need different default.png of different size.
22
votes
3answers
21k views

Android SplashScreen

I'm developing an application which basically downloads a lot of data at the start of the application itself and displays it in the ListActivity... what I'm planning to do is show a Splash Screen till ...
13
votes
2answers
9k views

What resolution should my Android splash screens be?

I'm creating a splash screen that will display while my Android application loads. I'd like to create it at the correct size so Android won't auto-scale it up or down to fit the screen. (It's a ...
9
votes
12answers
30k views

How can I display a splash screen for longer on an iPhone?

How can I display a splash screen for a longer period of time than the default time on an iPhone?
9
votes
4answers
6k views

C# Splash Screen Problem

I still have a problem with the splash screen. I don't want to use the property SC.TopMost=true. Now my application scenario is as follows: in progeram.cs: [STAThread] static void Main() ...
9
votes
4answers
2k views

Application window sent behind other windows on closing different thread (C#)

I'm writing a Windows Forms Application in C#.NET On startup, the application displays a splash screen which is running in a separate thread. Whilst the splash screen is showing, the main ...
8
votes
5answers
5k views

Displaying splash screen in Delphi when main thread is busy

I'd like to display splash screen while the application is loading. However some 3rd party components block main thread during initilization for several seconds, which causes all forms not to update. ...
7
votes
3answers
4k views

Create a Visual Studio 2010 like splash screen

I was intending to create a Splash screen like the one sported by Visual Studio 2010 for my desktop application (feel free to use any version of C#/VB/CLR). As per the Visual Studio blogs, the ...
6
votes
4answers
124 views

Show SplashScreen Programmatically

I'm currently working on a Java Application and it's my first Java App. So I created a file Splash.png and placed it into the source folder resourcesof the application. I already managed it to show ...
6
votes
6answers
993 views

How to speed up loading the splash screen

I am optimizing the startup of a WinForms app. One issue I identified is the loading of the splash screen form. It takes about half a second to a second. I know that multi-threading is a no-no on ...
5
votes
4answers
8k views

Implementing a splash screen in iOS

I'm quite a newbie in Cocoa, Objective-C and iOS developpement. I'd like to implement a View that is just a splash screen and only last for a short time before routing to the main view. Do you have ...
5
votes
3answers
1k views

Java 6 Splash Screen

I've never been able to get the Java 6 splash screen to work. I've tried everything I can think of. My manifest.mf contains: Manifest-Version: 1.0 X-COMMENT: Main-Class will be added automatically ...
5
votes
3answers
2k views

Splash screen display method best practice C#

I am showing a splash form by starting a new thread immediately before running my main form. In the method that is run by this thread, I am using Application.Run as shown in Option 1 below. Is this a ...
5
votes
3answers
3k views

Hide WPF Window Until Fully Loaded

For my WPF application, I am storing several user settings like window position, window state, and whether or not to display a welcome dialog. The problem is that while everything is loading up, I ...
5
votes
3answers
1k views

C# Splash Loading Page

Im about to start working on a big application (big for me anyway :P) and i was wondering, how do i create a splash page for the program that shows up as soon as the exe is launched and disappears ...
4
votes
1answer
297 views

Create animated splashscreen delphi 7

I'm trying to make an animated splashscreen while my app loads his database. I already created a splashscreen but I want to make the image "move" from left to right while the db is getting converted. ...
4
votes
1answer
71 views

Event for when UI is shown to user?

I would like my main activity to load a loading message. Once this is displayed i would like to start my tab activity which has to load a fairly heavy RSS feed. Problem is i have tried overriding ...
4
votes
2answers
244 views

How to construct a SplashScreen from a loaded image file, not a project resource

How would you inherit System.Windows.SplashScreen so has to enrich this class by the possibility of constructing itself on loading an image at a precise path. By definition ...
4
votes
3answers
615 views

Show a splash screen at once

We are dealing with slow start for WinForm applications (it is a large application and has many control assemblies). Control assemblies are DevComponents. Ngen was applied to prevent jit compilation, ...
4
votes
2answers
286 views

How to adapt my current splash screen to allow other pieces of my code to run in the background?

Currently I have a splash screen in place. However, it does not work as a real splash screen - as it halts the execution of the rest of the code (instead of allowing them to run in the background). ...
4
votes
2answers
2k views

iPhone Web App splash screen delay

I've built an iPhone web app and have done all the steps to make it look like a native app: app icon, prevent scrolling, prevent selection, use touch-based js methods, etc. However, I'm having a tough ...
4
votes
1answer
464 views

C# How to force a slpash screen to be shown in the primary display in a dual-monitor system?

I'm facing a problem when displaying a splash screen in a system with two monitors. When I start the application in the primary display, and then the mouse pointer is moved to the second monitor ...
4
votes
1answer
429 views

Application icon is missing in the taskbar during program start, if another application is active

I've written a WPF application which has a custom (not the standard) icon. A Splashscreen is implemented too. The icon is correctly displayed if I start the application and wait until it is loaded. ...
4
votes
5answers
3k views

How to delay Default.png?

How can I delay the app loading to show the splash screen for longer?
4
votes
4answers
1k views

Custom Java splash screen “freezes” until the whole application has loaded

I have a program that takes a long time to load. Because of this I wanted to develop a splash screen that can provide feedback to the user on what is being loaded. A simple JFrame with an image, label ...
4
votes
2answers
2k views

WPF SplashScreen implementing

I try to implement Splash Screnn in WPF. I have found some nice ehample in MSDN, but there is one place: private void _applicationInitialize(SplashScreen splashWindow) { Thread.Sleep(1000); ...
4
votes
3answers
1k views

WPF application window appears on top of SplashScreen

I followed the simple steps outlined at How to: Add a Splash Screen to a WPF Application to add a splash screen to my WPF application. When I start the application, the splash image is shown, then the ...
4
votes
5answers
1k views

C#: What is the ideal method of adding a splash screen to a project?

I'm going to input a splash screen to an application I'm currently working on that only consists of one form which we will call frmMain for now. I want to implement a splash screen (frmSplash) but ...
4
votes
3answers
3k views

Standard sizes for Windows splash screens

Is there a standard splash screen size or set of guidelines for the size of a splash screen? This is for a music-playing application for XP and Vista.
3
votes
3answers
203 views

Bringing mainwindow to front after splash-screen shuts down

Hello I have run into a problem with a custom wpf splash-screen implementation. The problem is that after the loading is finished and the MainWindow should be shown, it sometimes is not brought to ...
3
votes
2answers
105 views

Visible JProgressBar while initializing main GUI

I'm building a fairly complicated GUI for a project I'm working on. Importantly, it contains (among other things) a JTabbedPane with 12+ panes of complex GUI components. What I'm trying to do is ...
3
votes
1answer
356 views

WPF splash screen with own thread gets dug behind other windows

At start of my WPF application I have to load some data. This can take some seconds, so I built a splash screen with a text progress text and a bar. The screen is run by its own thread: public static ...
3
votes
3answers
2k views

Orienting iOS splash image to landscape/portrait according to launch orientation

I have an app that can launch in portrait or landscape. I'd like the Default.png file (the splash image that appears when the app launches) to show the image in the correct orientation so I expect I'd ...
3
votes
4answers
1k views

How do you disable the Windows Phone 7 splash screen?

Is there any way to disable the WP7 splash screen and just show a blank screen? My splash screen only stays on for less than half a second, leaving the user with a rather jarring sensation. I'd ...
3
votes
3answers
632 views

.NET Splash screen issues

I have a splash screen for my C# database application that is called via the Shown event. The splash screen contains some information that is preprocessed when the main form's constructor is called, ...
3
votes
3answers
607 views

Is there a way to show a splash screen for WPF application?

Dupe: http://stackoverflow.com/questions/3677653/wpf-animated-splash-screen I would like to show a splash screen for my WPF application. what I want to do is to show it while I load dictionary from ...
3
votes
1answer
4k views

Iphone Splash Screen

I am really trying to do my best but I can't really find out what's going wrong in my code. I made a lot of search but I guess I just can't understand some objective c basics ;) My first question is ...
3
votes
2answers
4k views

jQuery + Ajax Hash / History and more

I am trying to get a handle on using URL hashes in jQuery to control history in Ajax and make links / pages book-markable. I have tried almost every plug-in out there, and I cant seem to get any to ...
3
votes
4answers
1k views

How to show a splash screen to kill the time while data is loaded?

When starting my app I at first have to read in some data, have to init some forms and so on. For that time the user sees just grey getting-ready to show something forms. This lasts for a few ...
3
votes
3answers
1k views

How can I hide the DOS Window and bring up a splash screen?

Ive used the Matlab Compiler to create a .exe file.. The program takes 15 sec to start.. So I figured that I needed to get rid of the DOS window and needed a splash screen.. How can I do that??
3
votes
3answers
2k views

Custom Silverlight splash screen

Has anyone created a custom Silverlight Splash screen to replace the blue balls circular progress? Does anyone have a sample or the best way to do this?
3
votes
5answers
3k views

Fade splash screen in and out

In a C# windows forms application. I have a splash screen with some multi-threaded processes happening in the background. What I would like to do is when I display the splash screen initially, I would ...
2
votes
1answer
44 views

How to implement “Please Wait” screen in Silverlight

I have developed a Silverlight application. It has a button and once it is clicked the application starts doing something which takes time. Since everything in Silverlight is asynchronous the UI is ...
2
votes
3answers
29 views

Android splash screen and server communication

I am developing an application in android, where i need to display a splash screen and at the same time there will be server communication. The problem here is when i launch the app, first application ...
2
votes
1answer
198 views

Eclipse RCP application - custom splash screen

I'm currently developing an Eclipse RCP application, in which I'm trying to implement a custom splash screen handler, sporting a progress bar (behavior similar to the default progress bar you can ...
2
votes
1answer
73 views

iPhone returns to black screen after sleep interrupt during splash screen

I've got a strange bug going on that seems to be OS related : If I give a sleep interrupt to my device while the OS controlled splash screen, Default.png, is displayed, and then immediately wake the ...
2
votes
3answers
161 views

Qt Screen Resolution Splash Screen

I have a splash screen image that I display with splash.showFullScreen() but it doesn't re size it to the screen resolution so it either comes out tiled or to large depending on the display. I have ...
2
votes
3answers
81 views

Alpha-blended splash screen renders garbage in XP but works in Win7

I have a borderless form which has the following code: public partial class Splash : Form { bool painted = false; public Splash() { InitializeComponent(); Opacity = 0; ...
2
votes
3answers
48 views

how do i close an app?

i have a splash screen that has some code that i only want called once so after showing the splash screen it goes to my main game, and i don't want it going back to the splash screen again until the ...

1 2 3 4 5 7