Total members 10261 | Gratitudes |It is currently Wed May 23, 2012 9:52 am Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 6 posts ] 
Author Question
 Question subject: Splash Screen
PostPosted: Sun Apr 17, 2011 5:28 pm 
Offline
Newbie
User avatar

Joined: Sat Apr 16, 2011 8:45 am
Posts: 5
Has thanked: 2 time
Have thanks: 0 time

i am need to create a Splash Screen for my java Application...
My application in designed in IDE Netbeans 6.8
Can any one have idea how to create Splash Screen?


TOP
 Profile Send private message  
Reply with quote  
 Question subject: Re: Splash Screen
PostPosted: Mon Apr 18, 2011 11:55 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time
what about progress bar .
or you want only to have image while loading something .

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )


TOP
 Profile Send private message  
Reply with quote  
 Question subject: Re: Splash Screen
PostPosted: Thu Apr 21, 2011 3:18 am 
Offline
Newbie
User avatar

Joined: Sat Apr 16, 2011 8:45 am
Posts: 5
Has thanked: 2 time
Have thanks: 0 time
msi_333 wrote:
what about progress bar .
or you want only to have image while loading something .



Ya need that too...


TOP
 Profile Send private message  
Reply with quote  
 Question subject: Re: Splash Screen
PostPosted: Mon Apr 25, 2011 3:15 am 
Offline
Newbie
User avatar

Joined: Sat Apr 16, 2011 8:45 am
Posts: 5
Has thanked: 2 time
Have thanks: 0 time
ya need both , Splash Screen along with progress bar...


TOP
 Profile Send private message  
Reply with quote  
 Question subject: Re: Splash Screen
PostPosted: Mon Apr 25, 2011 2:50 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time
To create a progress bar :
Code:

JProgressBar progessObj 
= new JProgressBar();
 

java-gui/progress-dialog-t6906.html

to draw a image just use the paint function to put image ,
Code:

import java
.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Toolkit;
import javax.swing.JFrame;

public class 
FrameImage extends JFrame {

    public 
FrameImage(){
        
setSize(500,500);
        
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        
setVisible(true);
    }
    @
Override
    
public void paint(Graphics g) {
        
Graphics2D g2 = (Graphics2Dg;

        
Image img1 Toolkit.getDefaultToolkit().getImage("image.gif");
        
// draw the image at postion 0,0
        
g2.drawImage(img100this);
        
g2.finalize();
    }
    

}
 

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )



For this message the author msi_333 has received gratitude : aravindragu
TOP
 Profile Send private message  
Reply with quote  
 Question subject: Re: Splash Screen
PostPosted: Mon Apr 25, 2011 4:34 pm 
Offline
Newbie
User avatar

Joined: Fri Apr 22, 2011 2:34 pm
Posts: 1
Has thanked: 0 time
Have thanks: 0 time
I was also trying to create splash screen but unable cause i don't have enough knowledge but now i read all the codes very carefully from sir msi_333 and now i will try them.

thanks

_________________
:)


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 6 posts ] 
Quick reply


  

 Similar topics
 My Header is Not Fitting to the Screen!
 multi screen pcs?
 how to screen scrape or grab some parts of a website?
 full Screen Graphics
 Screen Capture and multicast
 Full Screen graphics (Lesson 2).

All times are UTC [ DST ]


Users browsing similar posts

Users browsing this forum: No registered users and 3 guests



Jump to:  
Previous Question | Next Question 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team