3

I am currently waiting for a very important announcement and I have created a simple application to check every 30 minutes whether the announcement was made or not

When the announcement is made, I want a window to pop up and inform me about it. The window is just a simple JFrame that has some text in it.

I have a class called Announcement.

Inside this class I define another class for the frame called Form, so I have something like this:

 class Form{

    public Form(){
       //create frame and show it
          JFrame frame = new JFrame("anouncement");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = frame.getContentPane();
        frame.setSize(420, 100);
        JLabel l1 = new JLabel("The announcement was just made");
        l1.setFont(new Font("Courier New", Font.ITALIC, 20));
        c.add(l1);
        frame.setLocationRelativeTo(null);
        frame.setResizable(false);
        frame.setVisible(true);
        frame.toFront(); //this thing doesn't work
        }

 }

 public class Announcement{

       public static void main(String[] args){
           //do the checking every 30 minutes part
       }
 }

The toFront function doesn't work at all.

What I want it do is, for example: while I'm browsing, I want this window to pop up and set the focus on this window.

So I want it to be in front of all the other windows no matter how many other windows I have already opened.

Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
jan1
  • 613
  • 2
  • 10
  • 17

1 Answers1

2

If I understand you correctly, your code has at least two windows -- one the basic program which you call "Form" and the other a window that you wish to "jump out" over the basic window, correct? If so, then don't use a second JFrame, but rather have the "jump-out" window be a JDialog or JOptionPane and make it dependent on the first window.

Please correct me if my assumptions are incorrect.

Hovercraft Full Of Eels
  • 283,665
  • 25
  • 256
  • 373
  • Hi thanks for your answer. Actually I just have 1 form, I just use a class inside the main class in order to create it. I tried using a JOptionPane dialog but again it doesn't come to the front. – jan1 Feb 26 '12 at 12:36
  • 1
    Consider creating a small mock-up program that doesn't have all the details of your program but that demonstrates what you're trying to do, an [sscce](http://sscce.org). – Hovercraft Full Of Eels Feb 26 '12 at 12:38
  • Thank you, I eventually used a JDialog and called the method setAlwaysOnTop(true) before making the dialog visible. – jan1 Feb 26 '12 at 13:38