User Profile

Collapse

Profile Sidebar

Collapse
jrobinson3k1
jrobinson3k1
Last Activity: Aug 5 '08, 06:23 PM
Joined: Jul 7 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jrobinson3k1
    replied to JFrame always on top
    in Java
    So the problem seems to be with the Windows 98 console I suppose, because same problem with java, but problem gone with javaw.

    Isn't it great how computers always make sense? >_<
    See more | Go to post

    Leave a comment:


  • jrobinson3k1
    replied to JFrame always on top
    in Java
    OK, well I fixed my problem...sorta . Check this out.

    When I compile and run my program from command line the window ALWAYS stays on top (the problem I've been having).

    Now, I condensed all my files into a jar file and poof! Problem has disappeared. I was planning on eventually making my program a java executable anyway, so as long as it works like this, then I'm happy. But its still odd that when I run it from command...
    See more | Go to post

    Leave a comment:


  • jrobinson3k1
    replied to JFrame always on top
    in Java
    I'm also running this program on a Windows 98 machine if that has anything to do with it, but it shouldn't...
    See more | Go to post

    Leave a comment:


  • jrobinson3k1
    replied to JFrame always on top
    in Java
    1.5.0_15

    and since I need to enter 20 characters I have written this line :P...
    See more | Go to post

    Leave a comment:


  • jrobinson3k1
    started a topic JFrame always on top
    in Java

    JFrame always on top

    Whenever I run my GUI, the frame is pinned as the top window ALWAYS even though I never set it to be like that. I even added in setAlwaysOnTop( false) for good measure (it's default false, right?) and my frame is always on top regardless. Any clues?

    Code:
    public static void main(String[] args){
             JFrame frame = new JFrame("Pearson Warranty");
             frame.setResizable(false);
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    ...
    See more | Go to post
No activity results to display
Show More
Working...