Frame not showing

Hi. I have application consisting of several windows (JFrames)...
I have Login JFrame which after succesfull password entry shows up MainMenu and dispose itself...
Then MainMenu calls other JFrames, some of them calls other JFrames.
Problem is with one particular frame. It's not showing it's content. It is blank and doesn't even react to close (X) button. What may be problem? If I call it within a test class ( having only constructor and main class) it works perfect. When I try to run it as part of application it doesn't work as JFrame, only operations are running.
Any idea why this?

Problem is with one particular frame. It's not showing it's content. It is blank and doesn't even react to close (X) button. What may be problem?
If I call it within a test class ( having only constructor and main class) it works perfect. When I try to run it as part of application it doesn't work as
JFrame, only operations are running."only operations are running."
if this is a long-running task, you've blocked the EDT, which also handles painting.
do the 'operations' in a separate thread

Similar Messages

  • Picture frame not showing photos

    I sync my IPad with photos in Aperture. Recently I scanned a couple of my old photos and imported them as JPEG in Aperture and synced them with IPad. I can see these photos in the Photo application, but when I select the album with scanned photos in Picture Frame, they dont show up. That is In Settings I can see the album but when I play the Picture Frame these scanned photos do not show up.
    Other photos (non scanned) show up fine.
    Any ideas why Picture Frame is not showing scanned photos?
    TIA

    From Apple:
    "This is a known issue that we are currently investigating."
    Just in case anybody else ever has this problem. Doesn't seem like many people do, however.
    Jeff
    http://itunes.apple.com/us/book/black-beauty/id558712324?mt=11

  • Frames not showing

    hi, frank here
    I can´t work this out, I´ve got a page, I divide it
    into a top frame, put some text, save the document, save the frame,
    load them to the server, does not show,I can´t work it out,
    does someone can please help?,

    I guess I´ll try, I´ll figure something out
    that is the page that I want to divide into two,
    http://www.about-spain.es/work.htm
    some txt already there, and then, the second half I wanna
    place the message board, which is on php, that´s why I thought
    of the frames which are just not damn showing, I´m a bit new
    to this, I´ve downloaded the php files from a site, which I
    don´t really want to modify, I just wanna put that board on
    that second half :) but at present I don´t know how

  • Duplicate frames not showing

    Hi everyone,
    I can't seem to make the 'Show Duplicate Frames' option work. I've got it ticked in the timeline settings, but nothing seems to happen. I've checked to make sure I'm changing the settings of the timeline I'm working on, and trashed prefs, but I still can't get the dang thing to work.
    Any ideas?

    I'm guessing you did a capture HDV as AIC or ProRes kind of thing when you brought your footage in? ... the point being that that creates media without a proper TC track nor any valid Reel # identification. If the clip does not have a proper Reel ID / TC track then it has no way of knowing that the portions of clips you are using are duplicates.
    Try adding a Reel ID to those source clips and then see if the Duplicate Frames function suddenly kicks in

  • Picture frame not showing up in sample through store

    My book just got approved for the store, which was quite exciting! However, when i downloaded the sample, the picture frames I had used around the images aren't there. The images are all there, but not the frames. The frames can be seen in the thumbnail pages at the bottom and for a split second when you select that page and it expands. But then the frames disappear. Has anybody else had this problem? Does anybody have any suggestions for how to resolve this?
    I had done a lot of testing beforehand to make sure that the book worked okay, including not only the preview in ibooks author but exporting the book and placing into intunes as has been suggested elsewhere in the forum, and it looked good there too. So I am a bit confused and concerned.
    Thanks!

    From Apple:
    "This is a known issue that we are currently investigating."
    Just in case anybody else ever has this problem. Doesn't seem like many people do, however.
    Jeff
    http://itunes.apple.com/us/book/black-beauty/id558712324?mt=11

  • Graphic stroke "picture frame" not showing

    My photos were "stroked" in the graphic inspector of iweb as "picture frame". This effect works if I view the site from my local hard drive but not when I upload to the commercial server via fetch. Has anyone else been able to see stroked or framed graphics created in iweb and hosted on a commercial, non apple server?

    It was a scripting error on the hosting server and not iweb related. Hurray!

  • Imovie frames not showing

    I've downloaded video from Canon T3i into iPhoto and then drag and drop it in to iMovie HD 6.0.3. It shows up & plays but doesn't break it inot editable frames.

    Might be in your thumbnail setting. Does it say "ALL"?
    Bottom right corner/middle under Project window.

  • JList is not showing up in my Frame

    This is a program I wrote for Having images in a List. A custom cellrenderer and a custom listmodel. Somehow the list itself does not show up in my frame.
    import java.awt.Component;
    import javax.swing.DefaultListModel;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.ListCellRenderer;
    public class ListWithImages extends JFrame {
         public ListWithImages() {
              //          We need a Custom model and a Custom Cell Renderer
              CustomImageListModel customImageListModel = new CustomImageListModel();
              CustomImageListCellRenderer customImageListCellRenderer = new CustomImageListCellRenderer();
              JList jlist = new JList(customImageListModel);
              jlist.setCellRenderer(customImageListCellRenderer);
              jlist.setVisibleRowCount(6);
              getContentPane().add(new JScrollPane(jlist));
              pack();
              setVisible(true);
         public static void main(String args[]) {
              new ListWithImages();
         class CustomImageListModel extends DefaultListModel {
              @Override
              public void addElement(Object arg0) {
                   // TODO Auto-generated method stub
         //          Add 10 elements with images
                   for (int i = 0; i < 10; i++) {
                        super.addElement(new Object[] { "Item " + i, new ImageIcon("smiley.jpg") });
         class CustomImageListCellRenderer extends JLabel implements ListCellRenderer {
              public CustomImageListCellRenderer() {
                   setOpaque(true);
              public Component getListCellRendererComponent(JList jlist, Object obj,
                        int index, boolean isSelected, boolean focus) {
                   CustomImageListModel model = (CustomImageListModel) jlist.getModel();
                   setText((String) ((Object[]) obj)[0]);
                   setIcon((Icon) ((Object[]) obj)[1]);
                   if (!isSelected) {
                        setBackground(jlist.getBackground());
                        setForeground(jlist.getForeground());
                   } else {
                        setBackground(jlist.getSelectionBackground());
                        setForeground(jlist.getSelectionForeground());
                   return this;
    }

    I try yhis code and the list is displayed. Try using a layout to get a better design
    public ListWithImages() {
                    this.setLaout(new FlowLayout());
              //          We need a Custom model and a Custom Cell Renderer
              CustomImageListModel customImageListModel = new CustomImageListModel();
              CustomImageListCellRenderer customImageListCellRenderer = new CustomImageListCellRenderer();
              JList jlist = new JList(customImageListModel);
              jlist.setCellRenderer(customImageListCellRenderer);
              jlist.setVisibleRowCount(6);
              getContentPane().add(new JScrollPane(jlist));
              pack();
              setVisible(true);
         }http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html
    HTH

  • Entire frame of mini-dv video clips do NOT show in the iMovie '11 viewer in playback mode

    I am editing a wedding video in iMovie11 that was recorded on a mini dv tape.  When I move video clips from the event library to the timeline, the entire frame is displayed in the timeline.  However, the entire frame of the video clip does NOT show in the iMovie viewer or when I playback the video.  I exported the video and burned it to a dvd using Toast 11 pro.  The video recorded to the dvd as it was showing in the iMovie viewer... the full frame does not show.  I would certainly appreciate any advice as to how to solve my problem.  THANK YOU!!!

    Is your video shot in 16:9 aspect ratio or 4:3?
    You can go to File/Project Properties and set the aspect ratio for the project.
    When you get a clip that does not match the project's aspect ratio, you use the Rotate, Crop, Ken Burns tool on the middle toolbar to specify how it should be treated.
    FIT will place the entire clip in the movie, and will letterbox (black bars) so that it fits.
    CROP will fill the screen, but will cut off the top and bottom of your frame.

  • Captivate 7 not showing the red frame when recording a slide

    I've been using the "Record Additional Slides" button since Captivate 5, and never run into this problem: the red frame that lets you define what you want to capture is not displaying. When I try to record, Captivate captures a portion of the software window, and the desktop. How can I force the red frame to display?
    Thank you for your help!
    Heloisa
    *** By the way, it is happening when I run Captivate from my Apple computer. I just tested running Captitvate on my parallels machine, and the frame does show up.

    Hello,
    Just to clarify, the problem (no red frame while recording slides) happens only on the Apple version of Captivate. It runs fine on my parallel machine, however I am running a trial version there. My license is for the Apple platform. I'm concerned because my trial period will expire soon. the weird thing is that the Captivate that I have in my machine at home does not present this behavior. Only the one in my work machine.
    The project resolution is 930px x 697px
    This is the 14th module that I am developing for a training suite.I have never encountered this problem before. It all started after the Maverick's fiasco
    So do  you think I should uninstall Captivate and start a brand new install? I tried changing the name of the folder but that didn't help much.
    Thank you!
    Heloisa
    *****I just uninstalled and re-installed Captivate 7 7o my apple machine, but the problem persists. ;(

  • After Effects RAM Preview not showing first 50 frames or so - Mac OS

    So I'm on a 2012 iMac, and when i RAM preview,  it plays audio but video does not show until about 50 or 60 frames in, its like a glitch or lag thats started recently, so it makes ram previewing from a certain time a real pain as i then miss the exact part i want and it c matches up with video a second or two later, i can't find any solutions, please help!!

    As Andrew says, Adobe and Apple are working on figuring this bug out. See the known issues section of this page: After Effects good to go with Mac OSX v10.10 (Yosemite)
    If you let the RAM preview loop at the end of its playback and play through again, it should be smooth and issue-free.

  • Key frame values are not showing

    Does anyone know why my key frame values are not showing? How do I get them back?

    See this about showing and hiding columns:
    After Effects Help | General user interface items

  • PE8 does not show MTS still frame as thumbnail in Organizer

    I am importing some MTS footage into organizer but PE8 does not show the still frame as the thumbnail. All clips have a generic film tape Icon instead.  Why? The clips are properly available though.

    Had the same problem. A pain.
    I renamed the clip in the organizer window to something comprehendible (Birthday_cake.MTS!)
    You could export it to some other format (MPEG2) that shows the thumbnail and then import it if you want a longer approach.

  • My Flash CS3 document got corrupted and its not showing timeline frames & drawings on stage. How to retrieve it?

    My Flash CS3 document got corrupted when I clicked on the option "Save & Compact".Now its not showing timeline frames & drawings on stage. Can someone please help me by telling how can I retrieve my work..???

    copy your fla.
    rename the copy to a dot rar file and use winrar to repair it.  then unrar to see if you can get a uncorrupted copy.
    otherwise, rename your fla to a zip, unzip it and recover whatever assets you can.
    or if you have a good swf, try a decompiler (like sothink's) to see if you can recreate your fla.
    and, in the future, save versions of your work so you never have to go through this learning experience with flash or any other document creation tool.

  • The system is not showing the UI as soon as i opened the frame

    Hello!
    I am writing an application in that on clicking on the Button another window will open. In that frame 4 buttons must b visible. I was not able to see untill i am pressing twice on the button.
    Can any one tell the reason for that problem.
    Thanks for any help.
    Rajani Kanth.A

    How can i rectify the bug.. It is not showing the buttons which it shld display. After 2 clicks it is showing the buttons. What can be the problem and shld i proceed further. At this point of time i may cant paste the code. Pls do the favour by telling the reason .

Maybe you are looking for

  • Message when I create  one item  in new portfolio

    Hello When i was creating a new item  in the portfolio  this message appears in the portal: An error occurred in the final release of locks at the end of the RPM transaction. Verify manually that the CGPL project locks created in the transaction have

  • Laserjet 5000 (with jetDirect 620n): spooling from Windows 7 too slow

    Hi, i've installed new drivers for Windows 7 (32 and 64 bit) from HP website but however spooling is too slow. I tried all of drivers (PCL 6, PCL5 and PS). Only the PCL5 driver have an adequate standard of quality. What i have to do to increase print

  • OS Language change

    I have purchased a G710 Laptop in France and was told I could change the OS to English, I have downloaded  Windows 8.1 in English but how do I change the OS from French please 

  • Two Problems with IDE 3.6

    hi First, I cannot access images I do not include the absolute path, and I want to create an application that will be used on many machine that have different paths, isn't there any solution? Second, I installed the Morena library, compiling it with

  • Transferring Plans from SOP to CO-PA

    Dear Friends I am working on the integration of SOP and CO-PA, can you plz let me know the configuration relating to the transfer of SOP(Flexible planning) plans to CO-PA an Vice versa, if possible also the steps(transactions with codes) for transfer