Multipule Jpanels question

hello all,
I'm createing an applet, and I'm using multipile jpanels. I want the panels to come up one after an other. The Jpanels will do the following. One will be the start frame I'll call it startPanel() it basically will ask the user names for two players, and to select a type of game. The next pane will have the panel of the selected game. The final panel will display the score for the game, and ask the user either to select an other game or quit. So as you see the panels need to wait for each other and the last panel will have to have a loop in that calls either board.
I'm not sure if I am on the right track, but i think it may use something like this:
/* I tried this and it doesn't work I really didnt get it(Start is its own class I don't think this one needs an invokeAndWait anyways becuse it is up first but just to try it out....
    try {
        javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
             add (new Start());
    } catch (Exception e) {
        System.err.println("createGUI didn't successfully complete");
    }I think i may use an setLayeredPane or something to change the JPanels. To make it easier for everyone the other classes for the Jpanels are called game1, game2, and endGame. the panels will go something like this start then when the "go" button is clicked in start it will then goto either game1 or game2 depending one what one is selected(I found an fourm that may help me with returning values from Jframes so there will be different variables carried over to each panel) Then when the game is finished the endGame panel comes up displays some stats about the game and asks the user what type of game they want and either play the games or exit. Thanks

I'm not 100% sure if this is what you need, but have you had a look at the CardLayout? It lets you swap JPanels as if they were in a deck of cards with one panel of your choosing always showing. I've used it several times, and it's not that hard to use. If this sounds close to what you need, check out the Sun tutorial on this:
http://java.sun.com/docs/books/tutorial/uiswing/layout/card.html

Similar Messages

  • JFRAME- JPANEL question

    I have a JFrame that holds a JPanel. If that JPanel needs to contact the JFrame how do I get access to parent? I tried panelname.getParent, when I did I got a
    java.lang.ClassCastException
    Any help would be great.
    Brock

    i think you have to buid your own JPanel class lyke this:
    public class MyJPanel extends JPanel{
    JFrame parent;
    public MyJPanel(JFrame p){
    parent = p;
    // here you have access to the parent JFrame in your JPanel
    public JFrame getParentFrame(){
    return parent;
    // here you return the parent of the JPanel
    so in your JFrame class you add the JPanel like this:
    getContentPane().add(new MyJpanel(this));
    i hope it helps you. :)

  • JPanel Question

    Hello,
    How can i maximize the content in a JPanel to the maximum size of the JFrame, in my case it is a pdf, so in case of it being landscape and portrait it should show the page in the whole JFrame.
    I know that in order to get the size of the screen i can use:
    Toolkit toolkit = Toolkit.getDefaultToolkit();
               Dimension screenSize = toolkit.getScreenSize();Any ideias?

    Hi,
    Thanks for the feedback...
    It is already there...in the center.
    Because i have landscape and portrait pdfs, both are displayed in different ways. So what i want is a method that could resize it allways to a predifined layout.
    What do you think ?
    Regards

  • SpringLayout in JPanel Question

    Is it possible to use SpringLayout's putConstraint() method in a JPanel? If so, how?

    Alright, well, I'll just throw up both classes that I am using because it looks like I have the same thing as you Joerg22, but the panel is still not showing up. The first class is the main frame which uses the second which is the panel. BTW, I can get this to work with GridLayout and BorderLayout, I just cannot figure out SpringLayout.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import frames1and2.insidePanel;
    public class EclipseFirst extends JFrame implements ActionListener
         private JButton butt;
         private Container c;
         private JLabel lblTest;
         private SpringLayout layout;
         private insidePanel panel;
         private EclipseFirst()
              // create insidePanel
              panel = new insidePanel();
              // create JButton
              butt = new JButton("Open Panel");
              // create JLabel
              lblTest = new JLabel("TEST WORKS");
              // Set Layout
              c = getContentPane();
              layout = new SpringLayout();
              c.setLayout(layout);
              c.add(butt);
              c.add(panel);
              // Place butt
              layout.putConstraint(SpringLayout.WEST, butt,
                                   10,
                             SpringLayout.WEST, c);
             layout.putConstraint(SpringLayout.NORTH, butt,
                             10,
                             SpringLayout.NORTH, c);
             // Place insidePanel
              layout.putConstraint(SpringLayout.WEST, panel,
                                   50,
                             SpringLayout.WEST, c);
             layout.putConstraint(SpringLayout.NORTH, panel,
                             50,
                             SpringLayout.NORTH, c);
             panel.setVisible(false);
             butt.addActionListener(this);
             this.addWindowListener(new WindowAdapter()
                        public void windowClosing(WindowEvent e)
                             System.exit(0);
              setSize(300, 300);
              setVisible(true);
         public void actionPerformed(ActionEvent e)
              if (e.getSource() == butt)
                   panel.setVisible(true);
         public static void main (String [] args)
              EclipseFirst prog = new EclipseFirst();
    // Second Class
    package frames1and2;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import frames1and2.insidePanel;
    public class insidePanel extends JPanel
         private JLabel lblTest2;
         private JLabel lblTest3;
         private JLabel lblTest4;
         private SpringLayout layout;
         public insidePanel()
              lblTest2 = new JLabel("TEST 2 WORKS!");
              lblTest3 = new JLabel("TEST 3 WORKS!");
              lblTest4 = new JLabel("TEST 4 WORKS!");
              layout = new SpringLayout();
              setLayout(layout);
              add(lblTest2);
              // Place lblTest2
              layout.putConstraint(SpringLayout.WEST, lblTest2,
                                   5,
                             SpringLayout.WEST, this);
             layout.putConstraint(SpringLayout.NORTH, lblTest2,
                             5,
                             SpringLayout.NORTH, this);
    }

  • PaintComponent() and JPanel Question.

    Hi everyone,
    I am trying to draw a connect 4 board on a JPanel but i cant get the board to draw the way i want it to. What happens is some of it is being drawn outside the visible area of the JPanel so for example the bottom row of the connect 4 board is not visible. I dont understand this because i am dividing the height of the JPanel by six so that each row will be displayed. I guess the height of the JPanel is bigger than the area shown. Is there any way to find out the height of the JPanel shown on screen? I want to able to resize the panel and the connect 4 board to shrink or get bigger accordingly. Can anyone help me please.
    Thanks.

    Hi thanks for your reply, Here is the code i am looping through the board and painting the counters that are in it.
    public class GameBoardCanvas extends JPanel{
        private JPanel canvas;
        private Game game;
        private int rowDivider;
        private int columnDivider;
        public GameBoardCanvas( JPanel canvas, Game game )
            this.canvas = canvas;
            this.game = game;
        }//end constructor
        public void setGameToDraw( Game game )
            this.game = game;
        }//end method
            @Override
        public void paintComponent( Graphics painter )
            super.paintComponent( painter );
            painter.setColor( Color.WHITE );
            GameBoard gameBoard = game.getGameBoard();
            List<Column> list = gameBoard.getAllColumns();
            int noOfColumns = gameBoard.getAllColumns().size();
            int noOfRows = gameBoard.getAllColumns().get( 0 ).getNoOfRows();
            rowDivider =  canvas.getHeight()  / noOfRows ;
            columnDivider = canvas.getWidth() / noOfColumns;
            setPainterOrigin( painter );
            for( int row = noOfRows; row >= 0; row-- )
                for( int column = 0; column < noOfColumns; column++ )
                    if( isColumnEmpty( list, column) )
                        paintCounter( column, row, painter );
                    }//end if
                    else
                        List<Counter> columnCounters = list.get( column ).getCounters();
                        if( columnCounters.size() > row )
                            if( columnCounters.get( row ).getColor().equals( "RED" ))
                                painter.setColor( Color.RED );
                            }//end if
                            else
                                if(columnCounters.get( row ).getColor().equals( "YELLOW" ) )
                                    painter.setColor( Color.YELLOW );
                                }//end if
                             paintCounter( column, row, painter );
                             painter.setColor( Color.WHITE );
                        }//end if
                        else
                             paintCounter( column, row, painter );
                    }//end else
                }//end nested for
            }//end for
        }//end method
        private void paintCounter( int column, int row, Graphics painter )
            painter.fillOval( column * columnDivider, -row * rowDivider, 25, 25 );
        }//end method
        private boolean isColumnEmpty( List<Column> list, int column )
            if( list.get( column ).getCounters().isEmpty() )
                return true;
            }//end if
            else
                return false;
        }//end method
        private void setPainterOrigin( Graphics painter )
            painter.translate( canvas.getX(),  canvas.getY() + rowDivider * 6 );
        }//end method
    }//end class GameBoardCanvas

  • Flash survey/quiz

    Hi,
    I have created a survey with several multipule choice questions using radio buttons. I want the last page of the survey to display results to the user kind of like a Cosmo quiz.  like "50% A." "25% B." "25% C." "0% D." I can't find any info on how to do this with Actionscript. Does anyone know of any tutorials/books/websites that can help?

    there's not enough substance there for a tutorial.
    you should store the user's responses in 4 variables that track the number of responses of that type:
    var tl:MovieClip=this;
    var responseA:Number=0;
    var responseB:Number=0;
    etc.
    then if the userresponse variable has values A,B,C or D use:
    tl["response"+userresponse]++;
    after each response.
    at the end of your quiz, display:
    responseA/totalquestions*100"% A";
    responseB/totalquestions*100"% B";
    etc

  • Beginners Questions about Multiple JPanels in JFrame and event handling

    I am a newbie with SWING, and even a newerbie in Event Handling. So here goes.
    I am writing a maze program. I am placing a maze JPanel (MazePanel) at the center of a JFrame, and a JPanel of buttons (ButtonPanel) on the SOUTH pane. I want the buttons to be able to re-randomize the maze, solve the maze, and also ouput statistics (for percolation theory purposes). I have the backbone all done already, I am just creating the GUI now. I am just figuring out EventHandlers and such through the tutorials, but I have a question. I am adding an ActionListener to the buttons which are on the ButtonPanel which are on JFrame (SOUTH) Panel. But who do I make the ActionListener--Basically the one doing the work when the button is pressed. Do I make the JFrame the ActionListener or the MazePanel the ActionListener. I need something which has access to the maze data (the backbone), and which can call the Maze.randomize() function. I'm trying to make a good design and not just slop too.
    Also I was wondering if I do this
    JButton.addActionListener(MazePanel), and lets say public MazePanel implments ActionListenerdoesn't adding this whole big object to another object (namely the button actionlistener) seem really inefficient? And how does something that is nested in a JPanel on JFrame x get information from something nested in another JPanel on a JFrame x.
    Basically how is the Buttons going to talk to the maze when the maze is so far away?

    I'm not an expert, but here's what I'd do....
    You already have your business logic (the Maze classes), you said. I'm assuming you have some kind of public interface to this business logic. I would create a new class like "MazeGui" that extends JFrame, and then create the GUI using this class. Add buttons and panels as needed to get it to look the way you want. Then for each button that does a specific thing, add an anonymous ActionListener class to it and put whatever code you need inside the ActionListener that accesses the business logic classes and does what it needs to.
    This is the idea, though my code is totally unchecked and won't compile:
    import deadseasquirrels.mazestuff.*;
    public class MazeGui extends JFrame {
      JPanel buttonPanel = new JPanel();
      JPanel mazePanel = new JPanel();
      JButton randomizeB = new JButton();
      JButton solveB = new JButton();
      JButton statsB = new JButton();
      // create instanc(es) of your Maze business logic class(es)
      myMaze = new MazeClass();
      // add the components to the MazeGui content pane
      Component cp = getContentPane();
      cp.add(); // this doesn't do anything, but in your code you'd add
                // all of your components to the MazeGui's contentpane
      randomizeB.addActionListener(new ActionListener {
        void actionPerformed() {
          Maze newMaze = myMaze.getRandomMazeLayout();
          mazePanel.setContents(newMaze); // this is not a real method!
                                          // it's just to give you the idea
                                          // of how to manipulate the JPanel
                                          // representing your Maze diagram,
                                          // you will probably be changing a
                                          // subcomponent of the JPanel
      solveB.addActionListener(new ActionListener {
        void actionPerformed() {
          Solution mySolution = myMaze.getSolution();
          mazePanel.setContents(mySolution); // again, this is not a real
                                             // method but it shows you how
                                             // the ActionListener can
                                             // access your GUI
      // repeat with any other buttons you need
      public static void main(String[] args) {
        MazeGui mg = new MazeGui();
        mg.setVisible(true);
        // etc...
    }

  • Simple question I think, add JPanel to JScrollPane

    I would imagine that for anyone with experience with Java this will be a simple problem. Why can't I add a JPanel to a JScrollPane using myScrollPane.Add(myPanel); ?? it seems to get hidden...
    This works correctly:
         //Create a panel
         JPanel panel = new JPanel(new FlowLayout());
         //Make it pink
         panel.setBackground(Color.pink);
         //Make it 400,400
         panel.setPreferredSize(new Dimension(400,400));
         //Create a Scrollpane
         JScrollPane scrollPane = new JScrollPane(panel);
         //Make it 300,300
         scrollPane.setPreferredSize(new Dimension(300,300));
         //Create a JFrame
         JFrame frame = new JFrame("Test Scrollpane");
         frame.setLayout(new FlowLayout());
         //Set close operation
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         //Set its size
         frame.setSize(600,600);
         //Add Scrollpane to JFrame
         frame.add(scrollPane);
         //Show it
         frame.setVisible(true);
    This doesnt:
         //Create a panel
         JPanel panel = new JPanel(new FlowLayout());
         //Make it pink
         panel.setBackground(Color.pink);
         //Make it 400,400
         panel.setPreferredSize(new Dimension(400,400));
         //Create a Scrollpane
         JScrollPane scrollPane = new JScrollPane();
         scrollPane.add(panel);
         //Make it 300,300
         scrollPane.setPreferredSize(new Dimension(300,300));
         //Create a JFrame
         JFrame frame = new JFrame("Test Scrollpane");
         frame.setLayout(new FlowLayout());
         //Set close operation
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         //Set its size
         frame.setSize(600,600);
         //Add Scrollpane to JFrame
         frame.add(scrollPane);
         //Show it
         frame.setVisible(true);

    rcfearn wrote:
    I would appreciate it you could read the sample code, I am asking the question as to why I have to do this? For structural reasons I don't want to have to add the JPanel during instatiation of the JScrollPane...Please read the [jscrollpane api.|http://java.sun.com/javase/6/docs/api/javax/swing/JScrollPane.html] To display something in a scroll pane you need to add it not to the scroll pane but to its viewport. If you add the component in the scroll pane's constructor, then it will be automatically added to the viewport. if you don't and add the component later, then you must go out of your way to be sure that it is added to the viewport with:
    JScrollPane myScrollPane = new JScrollPane();
    myScrollPane.getViewport().add(myComponent);

  • Question about relative sizing on JPanels

    Hi,
    My question is about relative sizing on components that are not drawn yet. For example I want to draw a JLabel on the 3rd quarter height of a JPanel. But JPanel's height is 0 as long as it is not drawn on the screen. Here is a sample code:
    JPanel activityPnl = new JPanel();
    private void buildActivityPnl(){
            //setting JPanel's look and feel
            activityPnl.setLayout(null);
            activityPnl.setBackground(Color.WHITE);
            int someValue = 30;  // I use this value to decide the width of my JPanel
            activityPnl.setPreferredSize(new Dimension(someValue, 80));
            //The JLabel's height is 1 pixel and its width is equal to the JPanel's width. I want to draw it on the 3/4 of the JPanel's height
            JLabel timeline = new JLabel();
            timeline.setOpaque(true);
            timeline.setBackground(Color.RED);
            timeline.setBounds(0, (activityPnl.getSize().height * 75) / 100 , someValue , 1);
            activityPnl.add(timeline);
        }Thanks a lot for your help
    SD
    Edited by: swingDeveloper on Feb 24, 2010 11:41 PM

    And use a layout manager. It can adjust automatically for a change in the frame size.
    Read the Swing tutorial on Using Layout Managers for examples of the different layout managers.

  • Question on JPanels

    I have a JFrame with three JPanels on. One at the top, one in the middle and one at the bottom. The bottom JPanel has a login and register button. If the user chooses login, a login dialog comes up. My question is to see whether it is possible to do this. If the user logs in correctly, is there any code i can write which will dispose of everything on my orginal JFrames panels, and replace them with new components? e.g. the login button turns into a JTextArea on successful login.

    Read the API. You can add/remove components from any panel. The trick is to revalidate() the panel after adding or removing components.
    Or better yet, read the Swing tutorial on [How to Use Card Layout|http://java.sun.com/docs/books/tutorial/uiswing/TOC.html]

  • Ridiculously dumb question about drawing in JPanel

    Howdy everyone,
    I gotta really stupid question that I cant figure out the answer to. How do I draw an image to a JPanel, when my class inherits from JFrame?
    Thanks,
    Rick

    Ok,
    Problem. The image isnt showing up in the Frame I set up for it. Heres my code. Im trying to get this image to show up in a scollable window. Can anyone tell what the problem with this code is??
    JPanel imgPanel= new JPanel(){
    protected void paintComponent(Graphics g){
    super.paintComponent(g);
    g.drawImage(getToolkit().createImage(imstr),imgw,imgh,this);
    imgPanel.setVisible(true);
    this.getContentPane().setLayout(new BorderLayout());
    this.getContentPane().add(new JScrollPane(imgPanel));
    this.setVisible(true);
    Any ideas?
    Thanks
    Rick

  • Question on jpanel

    im making my own panel in which im going to extend JPanel, and have it be able to display different images when a button has been clicked on. my question is, is it possible to display gifs on a panel and call repaint() to have it appear? or what images am i allowed to display on a JPanel? Thanks in advance

    Here is a better, at least IMHO, solution:
    Add a JLabel to your JPanel. When you want to display an image on the panel simply call myLabel.setIcon(image). Here's a demo.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class LabelImageTest extends JFrame{
        JLabel imageLabel;
        ImageIcon imageIcon;
        Image imageOne;
        Image imageTwo;
        Image imageThree;
        public LabelImageTest() {
            initImages();
            buildGui();
        private void initImages() {
            imageOne = Toolkit.getDefaultToolkit().getImage("images/About24.gif");
            imageTwo = Toolkit.getDefaultToolkit().getImage("images/Add24.gif");
            imageThree = Toolkit.getDefaultToolkit().getImage("images/Bean24.gif");
        private void buildGui() {
            JPanel mainPanel = (JPanel) getContentPane();
            mainPanel.setLayout(new BorderLayout());
            mainPanel.add(buildCenterPanel(), BorderLayout.CENTER);
            mainPanel.add(buildButtonPanel(),BorderLayout.SOUTH);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
        private void setImage(Image image){
           imageLabel.setIcon(new ImageIcon(image));
        private JPanel buildButtonPanel() {
            JPanel retPanel = new JPanel();
            JPanel innerPanel = new JPanel(new GridLayout(0,3,5,5));
            JButton buttonOne = new JButton("Image one");
            buttonOne.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                   setImage(imageOne);
            JButton buttonTwo = new JButton("Image two");
            buttonTwo.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    setImage(imageTwo);
            JButton buttonThree = new JButton("Image Three");
            buttonThree.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    setImage(imageThree);
            innerPanel.add(buttonOne);
            innerPanel.add(buttonTwo);
            innerPanel.add(buttonThree);
            retPanel.add(innerPanel);
            return retPanel;
        private JPanel buildCenterPanel() {
            JPanel retPanel = new JPanel();
            retPanel.setPreferredSize(new Dimension(50,50));
            imageLabel = new JLabel();
            imageIcon = new ImageIcon();
            imageLabel.setIcon(imageIcon);
            retPanel.add(imageLabel);
            return retPanel;
        public static void main(String[] args) {
            new LabelImageTest();
    }Of course, you'll have to supply path to your own images. The nice thing about this is that you can pass in images from files or a self created image you've drawn.
    Cheers
    DB

  • A question about how to change a button in a JPanel during runtime

    I am a beginner of GUI. Now I am trying to change a specific component, a button, when the application is running. For example, I have 3 buttons in a JPanel. Each button has its onw icon. If I click one of them, it will change its icon, but the other two don't change. I don't know if there is any method for changing a specific component during runtime. If any one knows please let me know, I will appreciate that very much!!!

    What you're going to have to do is loop inside the actionlistener but still have accessability to click while its looping. I don't know much about it, but I think you're going to need a thread. Try something like this... (it doesn't work yet, but I have to take off)
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    class buttonxdemo extends JFrame implements ActionListener{
      Buttonx mybutton;
      //set it all up, make it look pretty  =]
      public buttonxdemo()
           mybutton = new Buttonx("default");
           getContentPane().add(mybutton.thebutton);
           mybutton.thebutton.addActionListener(this);
           this.setDefaultCloseOperation(3);
           this.setSize(200,200);
      public void actionPerformed(ActionEvent ae){
        if (ae.getSource() == mybutton.thebutton)
             if (mybutton.keepGoing)
               mybutton.keepGoing = false;
                else if (!mybutton.keepGoing)
                     mybutton.keepGoing = true;     
          mybutton = new Buttonx(/*Icon,*/"My Button");
          //getContentPane().remove(mybutton);
          //getContentPane().add(mybutton.thebutton);
          mybutton.startstop();
      }//actionperformed
      static void main(String args[])
           new buttonxdemo().show();
    } //movingicondemo
    class Buttonx extends Thread{
      public boolean keepGoing;
      //public Icon ICx;            //perhaps an array, so you can loop through?
      public String strbuttonx;
      public JButton thebutton;     //may have to extend JFrame?
      public Buttonx(/*Icon IC,*/ String strbutton){
        //ICx = IC;
        strbuttonx = strbutton;
        thebutton = new JButton(strbuttonx);
      public void startstop()
        int i = 0;
        while (keepGoing)
          thebutton.setLabel(strbuttonx.substring(0,i));
          //if an array of Icons ICx
          //thebutton.setIcon(ICx);
    i++;
    if (i > strbuttonx.length() - 1)
    i = 0;
    try
         Thread.sleep(1000);
    catch (InterruptedException ie)
         System.out.println("sleep caught: " + ie);
    }//startstop()
    }//buttonx
    kev

  • Question on program structure about event handling in nested JPanels in GUI

    Hi All,
    I'm currently writing a GUI app with a wizard included in the app. I have one class that acts as a template for each of the panels in the wizard. That class contains a JPanel called contentsPanel that I intend to put the specific contents into. I also want the panel contents to be modular so I have a couple of classes for different things, e.g. name and address panel, etc. these panels will contain checkboxes and the like that I want to event listeneres to watch out for. Whats the best way of implementing event handling for panel within panel structure? E.g for the the checkbox example,would it be a good idea to have an accessor method that returns the check book object from the innerclass/panel and use an addListener() method on the returned object in the top level class/panel. Or is it better to have the event listeners for those objects in the same class? I would appreciate some insight into this?
    Regards!

    MyMainClass.main(new String[] { "the", "arguments" });
    // or, if you defined your main to use varags (i.e. as "public static void main(String... args)") then you can just use
    MyMainClass.main("the", "arguments");But you should really extract your functionality out of the main method into meaningful classes and methods and just use those from both your console code and your GUI code.

  • Simple question...*bmp in a JPanel

    How do I load a *.bmp file and draw it on the JPanel?
    I was going to JPanel.getGraphics() and Graphics.drawImage() which needs an Image, but there is no constructor for an image to load any kind of *.bmp or *.jpg, *.gif for that matter either. Looking at subclass of Image, there is still no way to load the bitmap. I searched through all of the java tutorial and the javadoc of the jdk1.3 source for the strings bmp, and bitmap not finding any help on this topic. PLEASE HELP!!!
    thanks,
    Dean

    took me a week to load a bmp in my app :(So why didn't you just read the BMP into MS Paint and output it as a JPG? Would have saved you a week.The college assignment was to load a bmp fresh from the scanner and compress it using our own algorithm... I whish we could het done it with jpg or gif. I looked for the sourcecode but I cant find it, I have to ask my college mates for it if somebody is interested.

Maybe you are looking for

  • Billing problem

    Hi forum people Can any one help/advise  I have a disabled mate ( he had a stroke 5 months ago and now has some difficulty talking over the phone ) up in Stoke who on my advice signed up for BT broadband in March this year , he paid for the initial c

  • When I play music, it seems to 'skip' at the beginning

    I listen to music a lot on my iphone.  I noticed this originally on my iPhone 4 and was assuming that it was due to the slow processor and limited memory of the '4'. I recently upgraded to an iPhone 6 with 128GB of memory and it still does has the is

  • IE Unicode capabilties

    I'm really surprised that after all these years IE is still incapable of displaying Unicode characters properly although all other major browsers can.  Just to give you an example browse this web site with all browsers and you get what I mean: www.al

  • Fonts on gentoo linux & cursor size

    Hello, When starting jdeveloper from the command line, I get the following output: Oracle JDeveloper 10g 10.1.2 Copyright 1997, 2004 Oracle Corporation.  All Rights Reserved Warning: Cannot convert string "-b&h-lucida-medium-r-normal-sans-*-140-*-*-p

  • IPad issues when trying to go to App Store

    I tried to download a new app from the app store, but the app store on my iPad only has images and the wording overlays itself so it looks a blur for all descriptions.  The last time I downloaded an app was in Dec, and when I tried today, it looks we