|
Dear all,
I have an application.
First I display a splash screen, a form, and this splash would call another form.
Problem: When the splash form is displayed, if I then open another application on the top of the splash, and then minimize this newly opened...
Started by Eng.Basma on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Start a new thread, and on that thread create your splash screen and....
You need to display the splash screen in a different thread - currently your new form loading code is blocking the splash screen's UI thread.
|
|
I have a simple application, it starts, loads xml feed from the net, you can browse a list of news and then read details for a chosen news item. What I would like to do is have a splash screen, meaning as soon as you click application, it should display...
Started by pambuk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Android suggests you take advantage of using a splash screen when performing lengthy calculations:
"If your application has a time-consuming initial setup phase, consider showing a splash screen for your splash ....
|
|
Is there a way to hide the status bar when showing splash screen in iphone? and show again in application
Started by Rahul Vyas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Once your application has loaded, you can re-show the status bar using UIApplication's setStatusBarHidden... .
I'm pretty sure that if your Info.plist file has the "Status bar is initially hidden" value set to YES, then it won't show while your application is loading .
|
Ask your Facebook Friends
|
I would like to show the user a splash screen (a picture) while my Cocoa-based application launches. How would this be possible?
Started by jin on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If it is....
If you decide that you want to show a splash screen during this time, so if you want to update the splash screen (with status, a progress bar startup is necessary.
Application), forcing it to be loaded at startup.
|
|
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?
Started by Robert Kozak on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look at this how to:-
How to: Define a Simple Silverlight Splash Screen
This looks quite.
|
|
Hi, In my TabBar based iPhone application, i would like to display a full screen welcome page (with some logs) before the actual application loads, How can i load a UIView from xib file as the welcome screen and then from there i can load my TabBar based...
Started by shinto Joseph on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Tab-bar apps, I display a splash screen like so:
In my app delegate object, I start displaying:controller animated:YES]; [controller release];
I'll usually put a "dismiss" button on the splash screen-from-the-bottom animation....
|
|
How to implement a splash-screen using an image with alpha channels transparency/opacity in WinForms?
Started by Shurup on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is it something you can draw using code? If so you could set the forms draw region to a shape, like this:
yourForm.Region = new Region(someShape);
The shape can for example be a polygon with the same shape ... .
Depends on what kind of shape your image is.
|
|
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 like to have it appear to "fade in". And then, once...
Started by Timothy Carter on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
While(this.Opacity !=0) { this.Opacity -= 0.05; Thread.Sleep(50);//This is for the speed of the opacity..... .
You could use a timer to modify the Form.Opacity level .
You can use the Opacity property for the form to alter the fade (between 0.0 and 1.0) .
|
|
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 correct way of doing this, or are there problems waiting...
Started by Andy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://stackoverflow.com/questions/392864/c-splash-screen-problem
see most rated answer
I realize that this may be an unusual viewpoint but have you considered not using a Splash screen and instead?
There are a handful of ....
|
|
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. Is it possible to have splash screen with own thread...
Started by Harriv on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Create you splash screen in the DPR first run the splash ....
It the splash, because a long block like that is a real problem.
screen in a seperate thread because it will need the main thread for screen updates.
|