Display in gui-base problem ??

I am going to put those elemets that i construct on the top of my gui base-panel .how come it can`t display what i want ?
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Login extends JFrame
private Container contents;
private JLabel  NameOfTheTeaml, NameOfTheTeam2, message;
private JTextField Team1, Team2;
private JPasswordField password;
private JTextArea legal;
// Constructor
public Login( )
  super( "Login Screen" );
  contents = getContentPane( );
  //contents.setLayout( new GridLayout(1,2));
  JPanel top = new JPanel(new GridLayout(1,2));
  top.setBackground(Color.WHITE);
  NameOfTheTeaml = new JLabel( "Team1 :" ); // label for Team1
  Team1 = new JTextField(6);      // instantiate Team1 text field
  top.add( NameOfTheTeaml );
  top.add( Team1 );
  NameOfTheTeam2 = new JLabel( "Team2 : " ); //label for Team2
  Team2 = new JTextField(6); // instantiate Team1 text field
  top.add( NameOfTheTeam2 );
  top.add( Team2 );
  message = new JLabel( "World Cup" );  // label to hold messages
  top.add( message );
  TextFieldHandler tfh = new TextFieldHandler( );
  // add event handler as listener for ID and password fields
  Team1.addActionListener( tfh );
  Team2.addActionListener( tfh );
  setSize( 550, 300 );
  setVisible( true );
// private inner class event handler
private class TextFieldHandler implements ActionListener
  public void actionPerformed( ActionEvent e )
   if ( Team1.getText( ).equals( "" )  || ( ( Team2.getText( ) ) ).equals( "" ) )     
      message.setForeground( Color.RED );
      message.setText( "Sorry!! Please enter two teams" );
   else
         message.setForeground( Color.BLACK );
      message.setText( Team1.getText() + "VS" + Team2.getText());
public static void main( String [] args )
  Login login = new Login( );
  login.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
}

I am going to put those elemets that i construct on
the top of my gui base-panel .how come it can`t
display what i want ? How am I supposed to know what you want? You need to tell us what it does and what you want it to do instead.

Similar Messages

  • How to change the size of the characters displayed on GUI screen?

    Hi All,
    My problem is : the characters displayed on GUI screen are smaller than other associates when we are in same condition.
    Can anyone tell me what i should do to change the size?
    Thank you very much.
    Regards,
    Fiona

    hi,
    click on the layout menu button at the end of standard tool bar.
    select visual settings. there u will get font size options.
    u can manage through this your font size.
    and this will effective with the first front end mode u start.
    layout menu button >> visual settings >>general tab>> font size
    hope it will help you.
    Edited by: Sachin Gupta on Jul 15, 2008 9:42 AM

  • GUI related problem in solaris 8 02/04

    Hello all,
    I am facing GUI related problem in the software running on solaris when I upgraded from solaris 8 02/02 to 8 02/04.
    The GUI which was working fine on 02/02 was giving some menu selection problem in 02/04. In GUI applications i was unable to select items after double clicking it in solaris 8 02/04 while it was working fine in solaris 8 02/02.
    Are there any O.S. related problem?
    Thanks and regards,
    Ankit

    Wolfgang073 wrote:
    Hi guys and ladys!
    I added the LD_LIBRARY_PATH, Why are you doing that. It's probably a bad idea.
    but the Openwindows not run OK (e.g. start cmdtool window without csh % prompt etc.).That's very possible. Don't make global changes to LD_LIBRARY_PATH (by putting in your login files for example). Instead if you need it to run a particular program, make a wrapper that sets the variable and then calls the program. That will limit the scope of those changes.
    vi .login
    # Erasing LD_LIBRARY_PATH
    setenv LD_LIBRARY_PATH
    # Important Paths set
    setenv LD_LIBRARY_PATH     /usr/ucblib:$LD_LIBRARY_PATHDon't do that.
    Darren

  • How to display the GUI that we developed, at middle of monitor screen

    I want to display my GUI at middle of monitor screen
    display = new JTextArea(5,20);
              JScrollPane scroller = new JScrollPane(display);
              getContentPane().add(scroller, BorderLayout.SOUTH);
              getContentPane().add(gui);
              pack();
              setSize(300,250);
              show();

    JFrame.setLocationRelativeTo()
    It centers the window if the argument passed to it is null.

  • HT4623 My 3GS won't flip into landscape display anymore. No problems with portorit display.

    My 3gs won't flip into landscape display anymore.  No problems with the portroit    view.
    My IOS is update.
    Thanks

    Settings > General > Lock Rotation..
    Or...
    Double-press the home button...
    Swipe to the right until you get to the Portrait Orientation Button...
    If no joy...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • How to display content dynamically base on the menu selection?

    I have only one XML file to populate my menus and display the
    content base on the menu selection.
    If I select anything by name on the menus, example Math all
    the the Math products will display on the dsFeatures region.
    I use istinctOnLoad: true, distinctFieldsOnLoad:['name']
    function to remove duplicate rows from the data set when it loads.
    So far so good.
    Once I try to select from the grades menu this does not
    display anything.
    I'll need to dynamically change the dsFeatures.setPath when I
    click on the menus some how.
    dsFeatures.setXPath("products/product[grade =
    '"+???+"']/features/feature");
    Below is my code.
    XML used to create the menus and the display the content.
    <products>
    <product>
    <name>Math</name>
    <category>Life Math</category>
    <grade type="grade">Grade 6 - 8</grade>
    <subject>Life Math Grade 6 - 8</subject>
    <image>images/math_icon.png</image>
    </product>
    <product>
    <name>Math</name>
    <category>Division</category>
    <grade type="grade">Grade 5</grade>
    <subject>Life Math Grade 5</subject>
    <image>images/math_icon.png</image>
    </product>
    <product>
    <name>Science</name>
    <category>Life Math</category>
    <grade type="grade">Grade 6 - 8</grade>
    <subject>Life Science Grade 6 - 8</subject>
    <image>images/science_icon.png</image>
    </product>
    <product>
    <name>Social Studies</name>
    <category>Studies</category>
    <grade type="grade">Grade 5</grade>
    <subject>Social Studies Life Grade 5</subject>
    <image>images/social_icon.png</image>
    </product>
    <product>
    <name>Language Arts</name>
    <category>Life Arts</category>
    <grade type="grade">Grade 3 - 4</grade>
    <subject>Life ArtsGrade 3 - 4</subject>
    <image>images/language_icon.png</image>
    </product>
    </products>
    // Get all the products data and use distinct() to filter the
    names.
    var dsProducts = new
    Spry.Data.XMLDataSet("included/d_products.xml",
    "/products/product", { useCache: false, distinctOnLoad: true,
    distinctFieldsOnLoad:['name']});
    // Get the menu by grade using distinct()
    var dsByGrade = new Spry.Data.XMLDataSet(null,
    "/products/product/grade", { useCache: false, distinctOnLoad: true,
    sortOnLoad: "grade", distinctFieldsOnLoad:['grade'] });
    // Create the dsFeatures data set, pass a null for the URL
    parameter so that it doesn't load
    var dsFeatures = new Spry.Data.XMLDataSet(null,
    "/products/product[name = '{dsProducts::name}']/features/feature",
    { useCache: false });
    // Define a function that to register as an observer on
    dsProducts.
    function updateCategoriesAndFeatures(notificationType,
    notifier, data)
    // Interested in "onPostLoad" notifications.
    // If it is any other notification, just bail.
    if (notificationType != "onCurrentRowChanged" &&
    notificationType != "onPostLoad")
    return;
    // Received an "onPostLoad" or "onCurrentRowChanged
    notification
    // from dsProducts! Ask it for its XML document. If it has
    one, tell
    // dsFeatures to extract its data from that document.
    var doc = dsProducts.getDocument();
    if (doc)
    if (notificationType == "onPostLoad")
    dsByGrade.setDataFromDoc(doc);
    dsFeatures.setDataFromDoc(doc);
    // Register the function as an observer on dsProducts.
    dsProducts.addObserver(updateCategoriesAndFeatures);
    Menus:
    Display by names:
    <ul spry:region="dsProducts" id="nameRegion">
    <li class="product" spry:repeat="dsProducts"
    spry:setrow="dsProducts" spry:select="selected" spry:hover="hover"
    >{name}</li>
    </ul>
    Display by grades:
    <ul spry:region="dsByGrade" id="gradeRegion">
    <li class="grade " spry:repeat="dsByGrade"
    spry:setrow="dsByGrade" spry:select="selected" spry:hover="hover"
    >{grade}</li>
    </ul>
    Content.
    Display the features content:
    <ul spry:region="dsFeatures">
    <li spry:repeat="dsFeatures">{subject} <br />
    {image}</li>
    </ul>
    Any idea on how to go about this or pointer to an example
    would be appreciated.
    ~Cheers

    Does anybody have idea?

  • Quesion on fragile base problem

    Hi,
    I like to know how JAVA addesses the fragile base problem. I understand fragile base problem occurs when you want to add a new feature to a base programs, it requires the modification of all the children class to also inherit the new feature. This takes a lot of effort and it's error prone. I kind of know that polymorphism concept is the feature Java added to address the problem but I don't have a solid picture of how it handles the problem. Can anyone provide some info on this. Thanks.

    Sorry, I probably did not mean adding new features. I
    think what I am trying to say is supposedly we change
    a method in the parent class to return a String,
    previously a Integer. If we don't retrofit the
    children class, it will cause the program to fail
    compiling. If the program uses deep inheritance, just
    one single change might require a lot of work to
    retrofit. So, how would a developer design the
    application to avoid this problem? Unless you are overriding or extending the method this isn't the case. Really it's not so much a parent - child problem as it is a general application problem. Everywhere you are calling this method will no longer compile.
    One solution that always works is to make the change and let the compiler tell you what other code needs to be fixed. Java doesn't have any answers for this problem though some IDEs do as the previous poster mentioned.
    The best way to avoid something like this is to have a good design. I can't think of any good examples of when this could happen. Usually deeply inherited classes should be almost completely stable. If not, maybe that method should't be part of the base class at all. Changing a method to return a String instead of an Integer is a huge change. Really you are talking about changing its purpose. Maybe if you gave a better example I could understand a little better.

  • Why display hanging and software problem when upgraded to ios 8

    Why display hanging and software problem when upgraded to ios 8

    Hi Redhazel,
    Thank you for using Apple Support Communities.
    To troubleshoot this issue where you're experiencing a poor image quality with your iPhone's camera, please follow the troubleshooting below.
    Camera isn't functioning or has undesired image quality
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Note: Video-recording features are not available on original iPhone or iPhone 3G.
    If your iPhone has a front and rear camera, try switching between them to verify if the issue persists on both.
    iPhone: Hardware troubleshooting
    Cheers,
    Alex H.

  • Bridge CS4 Search Not Displaying NEF Files + Keyword Problems

    Hello, I am hoping someone can be of service to peculiar problem that apparently nobody else has had.
    I am running Adobe Bridge CS4 (came bundled with Photoshop Elements 8) on a 2009 24 inch iMac with 4GB RAM and a 2.6mHz processor running Snow Leopard v10.6.2.
    I use Adobe Bridge CS4 to add Keywords to all my photos and edit 14 bit Nikon NEF RAW files. I write the keywords to an .XMP sidecar
    file.
    Two days I ago I changed something in Preferences->Metadata and the next time I started Bridge CS4 and used the loupe tool on a NEF
    file, it took longer than usual for the preview to come up and when it did, it was at 200% magnification instead of 100%. Once the loupe preview showed up, the NEF file had some sort of processing applied to it (it became more contrasted.) This was all within Bridge ant NOT Adobe Camera Raw. I quit the program and the next time I started Bridge, it crashed upon using the loupe tool. I looked up help on Adobe's website and it appeared I had corrupted preferences. Per Adobe's instructions I option clicked at Bridge startup to delete the preferences and purge the cache.
    Everything appeared to be normal until today when I searched for a keyword and got 36 random results when I know I have hundreds of
    photos tagged with that particular keyword. I started typing in other keywords and getting the same sort of results- very limited numbers of photos I have hundreds of. I always include all subfolders in all searches and used every search method available through Bridge to no avail. The searches always came up with a fraction of the photos I actually have tagged.
    I then verified and repaired all disk permissions from the operating system installation CD and Bridge started returning results as
    usual. However, when I clicked on an individual file in the Content pane, some of my Keywords started to appear in italics below the rest of my Keyword tree. There doesn't appear to be any rhyme or reason as to why some images will return the Keywords normally and others in italics. Also, sometime the italicized keyword tree will include keywords I edited due to typos and thus no longer existing my normal Keyword tree. I gave the "Make Persistent" command a try. It converts the italics to regular case, but it also doubles the tag so I now have two of that tag (one in the normal keyword tree, and the now converted italics keyword tree.)
    Now I'm noticing that all my search results are not including NEF files; just JPEG and the occasional DNG file that I made through Adobe Camera RAW. I'm not sure if this has been the case throughout my problem or if I just noticed it late.
    Regarding not displaying NEF files in searches, it appears that it will default to displaying JPEG if it has the option because as of lately I have only been shooting RAW and some of those files are showing up in the still-wonky searches (still displaying random or no photos of keywords.) However, if I manually navigate to a file, I can open and edit NEF files with no problem, they just don't display in any search modes.
    Here's two short videos of what happens when I navigate a folder with NEF files by manually searching:
    http://www.youtube.com/watch?v=WDjUDZzULKQ
    http://www.youtube.com/watch?v=-Y9HkDK7DCs
    When I click on a NEF file, the one ahead of it in Content view processes into a more contrasty image and the loupe tool previews jump between 100% and 400% and then change to 100% when dragged or they just process themselves right then and there.

    I am running Adobe Bridge CS4 (came bundled with Photoshop Elements 8) on a 2009 24 inch iMac with 4GB RAM and a 2.6mHz processor running Snow Leopard v10.6.2.
    Snow Leopard and Bridge CS4 do have some issues. Some have no problems and others have much problems I'm afraid.
    I use Adobe Bridge CS4 to add Keywords to all my photos and edit 14 bit Nikon NEF RAW files. I write the keywords to an .XMP sidecar file.
    To my knowledge the keywords are written into the XMP Metadata that is saved in the IPTC section of file itself, the XMP data in the sidecar file contain the changes you made in ACR. In other words, the keywords you have added should still be there.
    Also see this Knowledge Base article about Keywords:
    http://kb2.adobe.com/cps/402/kb402660.html
    Two days I ago I changed something in Preferences->Metadata and the next time I started Bridge CS4 and used the loupe tool on a NEF file, it took longer than usual for the preview to come up and when it did, it was at 200% magnification instead of 100%.
    Changes metadata in prefs only affects the visability of the fields in the metadata panel. put or deselect a checkmark in front of an option will let you see or not see the field in this panel, the actual data and fields ar still in the file.
    it was at 200% magnification instead of 100%. Once the loupe preview showed up, the NEF file had some sort of processing applied to it (it became more contrasted.) This was all within Bridge ant NOT Adobe Camera Raw.
    You can change the magnification for the loupe to 100 / 200 / 400 and 800 % using the scrollwheel or with loupe active the + and - keys. Bridge shows the settings that you made in ACR. If you have changed the default Camera Raw setting it will also change the thumbs for this file. A thumbs needs some time to be cached. First it shows with a black border around, when first cached it shows the embedded preview and in the second round it renders the ACR settings and High Quality preview (if you have not disabled this setting). Caching needs some time.
    Everything appeared to be normal until today when I searched for a keyword and got 36 random results when I know I have hundreds of photos tagged with that particular keyword. I started typing in other keywords and getting the same sort of results- very limited numbers of photos I have hundreds of. I always include all subfolders in all searches and used every search method available through Bridge to no avail. The searches always came up with a fraction of the photos I actually have tagged.
    Maybe you need to let the indexing in find do its work again but it might also be a snow leopard issue. Try an other app (Digital Asset Management like Expresion Media or  Portfolio) to check about the keywording and find. You can use a trial version for several days. You have several options to use find keywords. In the panel itself, in the filterpanel uner the keyword tab, when clicking on a visible keyword it only shows the files with that keyword or in the menu Edit / find (shortcut cmd + F) explore the options in this menu and also choose include non indexed and let Bridge start to index your files again.
    However, when I clicked on an individual file in the Content pane, some of my Keywords started to appear in italics below the rest of my Keyword tree. There doesn't appear to be any rhyme or reason as to why some images will return the Keywords normally and others in italics. Also, sometime the italicized keyword tree will include keywords I edited due to typos and thus no longer existing my normal Keyword tree. I gave the "Make Persistent" command a try. It converts the italics to regular case, but it also doubles the tag so I now have two of that tag (one in the normal keyword tree, and the now converted italics keyword tree.)
    Don't know about that.
    Here's two short videos of what happens when I navigate a folder with NEF files by manually searching:
    http://www.youtube.com/watch?v=WDjUDZzULKQ
    http://www.youtube.com/watch?v=-Y9HkDK7DCs
    When I click on a NEF file, the one ahead of it in Content view processes into a more contrasty image and the loupe tool previews jump between 100% and 400% and then change to 100% when dragged or they just process themselves right then and there.
    As you can see the black border around some file that disappear after a while or when you select them they have not been cached. You used purge cache so most of your earlier cached results are gone and need to rebuild.

  • JDeveloper 10g (10.1.3.3.0) GUI Buldier problems

    Hi there,
    I am running JDeveloper on several platforms (Windows XP Pro SP 2, Ubuntu Linux, Mac OS 10 Leopard), but all of them manifest this problem.
    I am designing a Swing Application.
    When I load the source code for a given class I click the Design tab to bring up the graphical representation of my component (in this case, a JPanel).
    In some cases this works fine. The component comes up in the main window, and I can graphically edit it.
    In other cases, it comes up with a blank screen which says: "No GUI Selected. Double click on an item in the Structure Window to see its GUI here.". I double click the item as instructed, but nothing changes in the main window.
    Can someone tell me exactly what JDeveloper is doing behind the scenes to facilitate this graphical GUI builder?
    Does it just instantiate the object using the default constructor?
    Does it save the layout somewhere?
    Does it parse the layout from the java file?
    Does it compile a separate version to render, or does it use the generated .class files?
    This is really frustrating. I had a lucky spell where 10 out of 10 JPanels I was designing would render correctly, but now some of them have this problem.
    What changes am I making to my source code to break the graphical visual editor?
    Thanks,
    Allen

    I have the same problem and I noticed some things in previous approaches, because the problem occured more than once.
    Last year I noticed that the problem occured, because I changed to JDK 1.6 (project java version, not the one running JDeveloper itself). The solution was that I had to clean all .class files (with an ant-Task) and all worked fine, but Inner Class-GUI-Objects. These are ASFAIK not supported.
    Now more than 6 months later I noticed that somehow old source code is working and displaying fine, but whenever I make an update to a newer revision the visual editor behavious like you said. (I am using subversion).
    This thing is strange, but anyway I managed to find out, that JDeveloper uses the method jbInit() to initialize the GUI and that other methods like doSomeMoreInit() will not be executed. So one approach was also do create postJbInit() methods, but somehow I am stuck now.
    Maybe this can help you with your problem, but I have to research a little bit.

  • Can't seem to display the Gui

    I feel dumb but I can't seem to get my Gui to display. I tried everything and this time searched a basic Gui program on the internet. When I compiled it, it did not show up as a separate window as the tutorial said it would. What could possibly be the problem? Here is the website where source code can be found. It can be possible that the example code is wrong or something is wrong with my computer. Any help is appreciated. Thanks.
    http://www.abbeyworkshop.com/howto/java/basicGui/index.html

    This problem was solved there is no need to reply.

  • Studio Management GUI Rendering Problem - Windows 8.1

    I've got a problem that I can't seem to find the solution to anywhere.  I recently purchased a new computer with Windows 8.1 and am having trouble with SQL Express 2012.  The GUI rendering within the Server Management Studio seems to be really
    messed up.  Any help would be much appreciated.  I've updated everything I can think of (Windows, SQL Express, video drivers, etc) to no avail.  
    Biggest problem initially is that when I go through the "Restore Database" process windows are not showing correctly.  Such as the dialog box where I go find my database backup file - there are no files listed - it is just a blank dialog box.
    Any help or ideas would be greatly appreciated.  Thanks in advance.
    (I would post some screenshots but I'm waiting for my account to be verified)

    Hi JaredBaszler,
    According to your description, when you install SQL Server 2012 Express on Windows 8, the SQL Server Management studio dialogs could not displayed clearly. We need to verify if there is the third party software or antivirus software in your Server.
     In addition, if your Windows Server works in high-DPI displays. There is detail about
    living a High-DPI desktop
    As you post, we recommend you install SQL Server 2012 on a clean machine, and check if the same error exists, if yes, the installation media 
    may be encountered some changes. And you can download the media again in Microsoft websites and reinstall again. If it display 
    normally in your new machine, reinstall again on your original computer.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Display server GUIs on remote Unix machines

    Hi,
    Because of some strategy decisions, I have created an RMI server which creates a form/window on it's own process space.
    the client connects to the server, does a lookup and using a factory object, loads a windows. This window will be created in server process space.
    But the problem is:
    the environment is Sun Solaris and for server to show the window I have to set the DISPLAY environment variable to the IPAddress the server box that has loaded the rmi server. now If a client from another machine with a different IpAddress contacts the server and asks for a windows to gets created, won't see the window because the window is created on the server box and is shown on server machine because of DISPLAY set to IpAddress of server box.
    The question is, is there any way to change the display per request in java? is there any way that java can handle the on which target machine to display it's GUI?
    Thanks for help and I all 1000 Dukes' to this
    S+

    Thanks for the comments,I'm sure that is the ideal workaround for a regular distributed env but based on our analysis.
    Well, to defend myself :) based on what we are doing, this is one of the most intelligent strategies, please accept my appologies that I can not explain what we have here, and based on what analysis we decided this scenario (that was to defend myself) :)
    now if you believe that this approach was a good idea, then we have one problem to solve and that is, when we set DISPLAY to one target machine at the startup of the server, then multiple clients will connect to server and of course the factory object and request for a window, now clients can be on different ip addresses, now how server can load each window on different target machines as ip addresses differ, is there anyway in runtime to say to jvm , as where to load the window?
    Cheers,
    S+

  • Display and lock up problems with 3 week old MBP!!!

    Hi all,
    I hope that someone here can help with a scary problem that I have experienced with my (otherwise perfect!!) MBP!!
    Occasionally, so far always after a boot up or wake up (but never on the login screen!), the MBP will lock up completely and the display will become corrupted as in the images I have posted below (fingers crossed!)!
    As I said, it locks up the MBP so that the only action I can take is to force a reboot by pressing the On/Off button for the required amount of time.
    I took the MBP to an Apple shop after making an appointment with a Genius (wonderful, lovely Spanish girl, name of Eva!!!!). Sadly, as the symptoms could not be recreated in the shop there was not a lot Eva could do, she did recommend a re-install of OS X, and also suggested that I let them have the MBP for a day so that they could hook it up to something (for a full eight hours!!) or other and test it. Eva did say that she had not seen the problem before (I took my camera to the shop and showed her the pics of the screen), but that it did not look good!!
    So, I decided to take it back home and ask for help here!!!!
    Any advice would be welcome!!!
    Screenshot 1...
    Screenshot 2...
    Regards
    Blakey

    i would go back and show them these pics, also try doing stuff that is graphics intensive, my guess is that you have a bad video card, doing things that heat it up should get it to happen
    one thing that you can use stress the vid car is the opengl example programs included with XCode (its included with the programs on the CD that came with the computer), so i recommend opening a few of those, and then doing a few `yes>/dev/null` in the terminal, also make the window semi-transparent, and put it on top of quicktime playing some movies, that should help stress the video card and put extra heat on it
    if you can get that to consistently cause the problem then take it back to Apple

  • Display or Graphics Card Problem

    Hey all,
    Recently I've notice little spots apprearing discolored on the display. And by little I mean 1 pixel, but there are many of them. They usually appear on the grey frame of windows, as well when I'm watching a dvd they appear on the movie screen. If I move a window around, larger groupings of these spots will appear. I am thinking it might be a problem with the GPU, I first noticed when my fan was spinning at a rather high speed, I'm thinking the GPU might have overheated. But I just started my powerbook after leaving it off for the night, and it's still happening. Any thoughts ?

    One of our users is experiencing the same problem.
    The problem has started today for no apparent reason.
    Ran AppleJack, installed the latest update (10.4.4) didn't solve the problem.
    He's using a dual G5 2 GHz with Apple's LCD display.
    Any suggestion would be appreciated!

Maybe you are looking for

  • Error while running struts example on JBOSS

    Hi, In any application of struts wherever i am using formbeans, i am getting following error. If i remove <html:form> and all <html:...> types of tag, it will just show the jsp page. If anybody knows the solution please help me. Following are the det

  • Can I install Win7 Boot Camp on a 2013 rMBP using an External SuperDrive?

    I've been looking around, but I haven't found any concrete answers. The question is, is it possible to use an External SuperDrive to install Windows 7 on a Late 2013 rMBP? I have an install DVD I bought from my university store a few years ago, which

  • 1) Select a range of files in Finder; and 2) Cut files!

    Two questions: 1) Why is it not possible to select a range of files in Thumbnail view in the Finder while pressing Shift...works fine in the List view? Makes no sense at all! 2) Why is it not possible to cut files in the finder using "CMD   X" or "Cu

  • System status field  table name

    Dear all, I required help from all of you for finding the table  name for system status of equipment Thanks Raghav

  • Can't create outboud delivery against new SO type

    Dear Experts, I created SO type via VOV8 & assign the item category via Sales & Distribution - Sales - Sales Document - Sales Document Item - Assign Item Category. Then I create a Sales Order via VA01 & then create Outbound Delivery via VL01N. Error