No Display with Dedicated Graphics (GTX780) with XPower Z87

Hey,
I'm having a bit of trouble with my system lately. I will then describe my problem, then list my system specifications.
Okay, so when i boot up my pc with integrated graphics, all is fine and works as normal - However when the monitor Cable is plugged into the dedicated GPU (GTX780), i can hear windows boot through my speakers, however there is no display on the monitor as it says no input. I have tried numerous things such as moving the card into a different slot, checking power cables, removing ram.
Specifications:
Win 7 64bit
MSI XPOWER Z87 (BIOS Rev1.0 [initial release])
Intel i7 4770k
Corsair AX1200i
Samsung 256Gb 840 Pro SSD (Boot)
2x 4gb Corsair Dominator RAM (2000mhz)
Monitor is a Acer S230HL
MSI GTX780
No overclocking as yet - All running stock.
Any help wouldbe greatly appreciated!
Cheers.

Quote from: awatt24 on 20-July-13, 17:26:54
Also noticed the LED post on the motherboard reads 'A0' when in windows?
That at least appears normal.  Mine always says AO once booted and running.
Just a thought here, I recently had SLi issues that were solved by going into BIOS and setting PEGO - Gen X setting to Gen 2 for my graphics cards.  It might be worth trying to set yours to Gen 3.  Default setting is AUTO.

Similar Messages

  • I attempted to update to the latest IOS version.  Then it seemed to "Lock UP".  Now all i get on display is a graphic of the power cord with an arrow pointing to an iTunes icon.  Home button is not responding.

    I attempted to update to latest version of IOS.  Now all I get on the display is a graphic of the power cord with an arrow pointing to an iTunes icon.  Ipad does not seem to power down or power up correctly.  Home button is not responding.

    I am new to this, could you provide me with a little more detail on how to do this?  Thanks so much!

  • Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click w

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

  • Getting graphic display with GL4java

    Hello .. I'm trying to get a basic display with GL4java. I'm able
    to create the main window but cannot get any openGL display. I've first defined a class which extends from JFrame who is the main window. From the panel, I've added a class which extends from Canvas. This is the class where I define the openGL configurations.. !
    I don't know why I can't get an openGL display. Would you know what I'm doing wrong.
    -=-=-=-=-=-=-
    code from Graphique.java
    /* Generated by Together */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    import java.net.*;
    import java.lang.*;
    import java.util.*;
    import java.io.*;
    import gl4java.*;
    import gl4java.awt.*;
    import gl4java.drawable.*;
    import gl4java.utils.textures.*;
    import gl4java.utils.glut.*;
    public class Graphique extends Canvas implements GLEventListener, MouseListener, MouseMotionListener, KeyListener{
    constructeur
    public Graphique()
    setSize(400,400);
    addKeyListener(this);
    x = 0;
    y = 0;
    public void init(GLDrawable drawable)
    System.out.println("ICI");
    gl = drawable.getGL();
    glu = drawable.getGLU();
    glut = new GLUTFuncLightImpl(gl, glu);
    glj = drawable.getGLContext();
    this.gldrawable = drawable;
    public void display(GLDrawable drawable)
    //gl.glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    glu.gluLookAt(0.0,0.0,10.0,0.0,0.0,0.0,0.0,-1.0,0.0);
    gl.glMatrixMode(GL_PROJECTION);
    gl.glLoadIdentity();
    glu.gluPerspective(45.0f,1.0,0.1f,150.0f);
    gl.glMatrixMode(GL_MODELVIEW);
    gl.glBegin(gl.GL_QUADS);
    gl.glColor3d(1.0,0.0,0.0);
    gl.glVertex3d(0.0,0.0,1.0);
    gl.glVertex3d(1.0,0.0,1.0);
    gl.glVertex3d(1.0,1.0,1.0);
    gl.glVertex3d(0.0,1.0,1.0);
    gl.glColor3d(0.0,1.0,0.0);
    gl.glVertex3d(3.0,3.0,1.0);
    gl.glVertex3d(4.0,3.0,1.0);
    gl.glVertex3d(4.0,4.0,1.0);
    gl.glVertex3d(3.0,4.0,1.0);
    gl.glColor3d(0.0,0.0,1.0);
    gl.glVertex3d(4.0,4.0,1.0);
    gl.glVertex3d(5.0,4.0,1.0);
    gl.glVertex3d(5.0,5.0,1.0);
    gl.glVertex3d(4.0,5.0,1.0);
    gl.glEnd();
    public void reshape(gl4java.drawable.GLDrawable gld, int width, int height)
    float h = (float) height / (float) width;
    gl.glViewport(0,0,width,height);
    gl.glMatrixMode(GL_PROJECTION);
    gl.glLoadIdentity();
    glu.gluPerspective(45.0f,1.0,0.1f,150.0f);
    gl.glMatrixMode(GL_MODELVIEW);
    gl.glLoadIdentity();
    public void cleanup(GLDrawable drawable)
    System.out.println("destroy(): " + this);
    drawable.removeMouseListener(this);
    drawable.removeMouseMotionListener(this);
    public void postDisplay(GLDrawable drawable) {}
    public void preDisplay(GLDrawable drawable) {}
    paint(Graphics)
    public void paint(Graphics g) {
    //g.drawRect(x, y, x+1, y+1); // draw border
    //g.drawString("le jeu va ici :)", 20,20);
    //setBackground(Color.blue);
    GLFunc gl;
    gl.glPushMatrix();
    gl.glPopMatrix();
    keyPressed(KeyEvent)
    public void keyPressed(KeyEvent evt)
    int no = evt.getKeyCode();
    System.out.println(no);
    switch(no)
    case 40: //DOWN
    y += 5;
    break;
    case 39: //RIGHT
    x += 5;
    break;
    case 37: //LEFT
    x -= 5;
    break;
    case 38: //UP
    y -= 5;
    break;
    case 10: //ENTER
    break;
    case 27: //ESC
    break;
    case 17: //CTRL
    break;
    case 18: //ALT
    break;
    //repaint();
    keyReleased(KeyEvent)
    public void keyReleased(KeyEvent evt)
    int no = evt.getKeyCode();
    //System.out.println(c);
    keyTyped(KeyEvent)
    public void keyTyped(KeyEvent evt){}
    public void mouseExited(MouseEvent evt) {}
    public void mousePressed(MouseEvent evt) {}
    public void mouseReleased(MouseEvent evt) {}
    public void mouseClicked(MouseEvent evt) {}
    public void mouseDragged(MouseEvent evt) {}
    public void mouseMoved(MouseEvent e) {}
    public void mouseEntered(MouseEvent evt) {}
    int x;
    int y;
    private GLFunc gl;
    private GLUFunc glu;
    private GLUTFunc glut;
    private GLContext glj;
    private GLDrawable gldrawable;
    //private Joueur joueur1;
    //private Joueur joueur2;
    //private Joueur joueur3;
    //private Joueur joueur4;
    //private Plateau UnPlateau;
    }

    That's what I did. However, I browse the code given with the NeHe jars and was able to retrieve the information I needed to start my application.
    Still, there's something that's bugging me. I can run my application with JBuilder, but not using java, javac MSdos tools. I receive an error saying that my class is not recognized when I add to classpath to gl4java jars.
    the reason why I want to use java basic tools is that my computer just crashed a few time when I executed the program. I believe it's because of JBuilder which is oversurpassing my computer's ressources. You see, I use a pII 266 with 64meg ram, while the recommended speed is 128meg ram.
    thanks again for your time :)

  • Reporting a ML Bug on MacBooks from 2010 with Dedicated Graphic

    Hello Guys, how are you?
    I found a bug in the Macbooks from 2010 with a Dedicated Graphic.
    As you can see on this video: http://www.youtube.com/watch?v=8mwQ4YR1w2s  When Im try to take a selected area to printscreen with the CMD + Shift + 4 my mouse pointer was so laggy, skipping...
    After tests, i found the problem.
    The problem is when the macbook is using the Intel HD Graphics 288.When I'm using a OpenGL app or disabling the Advanced Graphics Switch on the Energy Save option, this problems doesnt occur.
    Please Apple, again no, my macbook was so bugg on the Lion and my hope to it be fixed on ML was a illusion.
    Anybody with a MacBooks from 2010 with Dedicated Graphic can test this too and confirm my test?
    Thanks a lot guys,
    Wagner

    Have you filed a bug report on the Apple fedback web page? http://www.apple.com/feedback/macosx.html

  • I have my macbook pro 17" 2.5 Q.C. i7,750GB HDD 5400rpm, 4gb ram, amd radeon 1gb dedicated graphics with intel hd graphics 3000,antiglare screen when i turned on my laptop and see the specs is not showing the 1gb graph. only 512mb.

    i have my macbook pro 17" 2.5 Quad. Core. i7,750GB HDD 5400rpm, 4gb ram, amd radeon 1gb dedicated graphics with intel hd graphics 3000,antiglare screen when i turned on my laptop and see the specs is not showing the 1gb graph. only 512mb is there anybody out there have the same problem please how can i know or is there any other way to be sure what's the real capacity of my graphics?take note this is brand new late 2011 model made to customize MD311 with anti glare screen...

    I have the same machine, except it's running the blessed fast Snow Kitty,
    "when I turn on my laptop and see the specs is not showing the 1gb graph, only 512mb is there"
    What specs are you refering about?
    Hold the command shift and 4 keys down, draw a box around what your seeing and upload the desktop image in your post response here.

  • Is it possible to set primary and secondary display with 2 graphics cards?

    I have an Early 2008 Mac Pro with two graphics cards and four monitors installed. Does anyone know how the computer (or more specifically Keynote) determines which is the primary display and which is the secondary?
    Also is there any way to change the scheme?
    What I am trying to do is switch the primary and secondary from the two monitors in my office to the monitor at the podium (would like it to become primary) and a vga projector (would like it to become secondary)
    I bought the second graphics card so I wouldn't have to switch the cables back and forth three times a week. All the monitors work fine, it's just a matter of determining or changing primary/secondary
    Thanks in advance

    Thanks Malcolm
    I got that far – The keynote manual says that the display with the menu bar is the primary display – that works out fine. The problem is that the manual says that the display without the menu bar is the secondary (or alternate). But there are three displays without the menu bar.
    What I would like to find out is: is there a way to choose the display without the menu bar to be the alternate?
    When I try various combinations, there seems to be no rhyme or reason as to which display is the alternate.
    Thanks again for your response!

  • Still Graphic displayed with idle DVD

    Not sure exactly how to describe the feature, but if i stick a commercial DVD into my powerbook, i get a prompt from DVD Player that asks if i want to start the disc from the beginning or "last time played." What i'm interested in is what the DVD is displaying during this prompt. Generally, there is a graphic displayed with the title and artwork from the film . It is a still, but i'm not sure if its a special menu or slideshow or what.
    I'm having trouble finding documentation about it as i don't even know what its called. Is anyone familiar with this feature or what the technical name/behavior is? Is it something that has to be scripted?
    Thanks!
    G5   Mac OS X (10.4.9)  
    G5   Mac OS X (10.4.9)  

    Hi:
    Wellcome to the forums !
    Search for About Jacket Pictures in DVDSP User Manual. I think that's what you mean.
    I never used this feature but heard that not all players can deal with it fine. Look at this SEARCH in this forum for other threads related:
    http://discussions.apple.com/search.jspa?objID=f952&search=Go&q=jacket
    Hope that helps!
      Alberto

  • Triple Screen with Macbook Pro 13" integrated graphics vs 15" dedicated graphics?

    Am I gonna be able to run games with triple screen setups on the integrated Intel HD 3000 graphics or is it gonna be umplayable if I don't buy the 15" macbook pro AMD dedicated graphics?
    The game I'll playing the most is world of warcraft, my future setup will be 3 screens of 19" each conected to the macbook pro with a resolution of 1400X900 each, using the matrox adapter.
    I cannot buy an imac because i need the laptop for the university and programing outside the house

    If you plan on doing any gaming, get a discrete GPU.  An on-board likely will give you less-that-satisfactory performance.

  • Does anyone (like me) wish for macbook pro or air (13"or smaller) with dedicated graphic card?

    Does anyone (like me) wish for macbook pro or air (13"or smaller) with dedicated graphic card?

    This is not the place to ask such a question.  This message board is only for "techincal issues" dealing with Macbook Pros.
    You can whisper your wishes over on the Product Feedback wishing well website.

  • Artifacts in display with PSE-13

    Downloaded and installed PSE 13. In the photo editor I am getting artifacts when layers are created and when I use the Navigator to show different sections of the photo.
    In navigator this shows up as red lines as above. In the main display the lines show with various colours. The artifacts disappear in the main display with a mouseover but remain in the navigator window.
    Windows 8.1 64 - Nvidia 230 graphics card (drivers up to date) - Dell U3014 monitor running from DVI, 8GB RAM i7 CPU 2.8GHz.
    I still have PSE 12 installed and this problem does not occur with the photo editor in that version.
    Tried a re-install (as administrator), deleted the presets and PSE 13 editor recreated them - both of these actions did not help.

    So far, i'm not seeing that on windows 8.1 x64 or mac os x 10.9.5 with photoshop elements 13.
    (both systems have Nvidia  graphics cards, though different ones than you have)
    You installed the latest graphics card drivers from the Nvidia website?
    (windows update doesn't always install the latest drivers)
    Drivers - Download NVIDIA Drivers

  • Multiple displays with different resolutions

    The system is setup with two non-mirrored displays with the following resolutions: A) 1024x768 and B) 1280x1024 arranged as BA with A the menu'd display using an ATI 9000 Pro for Mac. During startup, approximately once inch worth of the menu's right items momentarily appear on the right side of display B 768 pixels down from the top. This problem only occurs in this BA configuration of differing resolutions and is independent of graphics cards (substituted the 9000 Pro with a mirror only AGP Navidia card and a mirror only PCI ATI Rage card combination which gave the same result). This problem first appeared using MacOS 10.3 which displayed several inches of menu instead of only an inch under MacOS 10.4. Anyone else seen this problem?
    Dual 800 MHz QuickSilver   Mac OS X (10.4.4)  

    Over the weekend, I explained this problem to one of the Apple Geniuses at an Apple store and then was able to duplicate the issue using a lap top and attached monitor in the store (not the same resolutions as my system; but, screens of similarly different resolutions). I raise this issue again because, as of late, additional things have been happening and I wonder if these are related to the core issue of an expanded desktop with two different screen resolutions. All of the widgets on the larger resolution screen desktop are drawing in the menu located in the smaller resolution screen when hitting the "i" to gain access to its control panel; however, not effecting the menu at all when moved to the smaller resolution screen. The other has to do with screen savers periodically blanking both monitors (as though the graphics card went to sleep) or having both monitors lose syncing (first occurrence today) where a cold start is required to bring the monitors on line again (I am going to have to figure out a way to test if the system is actually sleeping or the monitors have only gone blank before cold starting the system).

  • Using Cinema display with Win 8 Ultrabook?

    Hello, can I use a Cinema HD display with a Lenovo U410 Ultrabook?  It has 4 USB ports and 1 HDMI.  Running Windows 8.  Thanks.

    I am having this exact same problem.  2010 iMac with NVIDIA GeForce 9400 256MB.  I have it hooked to a 30" display through a DisplayPort to DVI-D adapter.  The 30" is fine, but I have graphical corruption constantly on the main iMac screen.
    This all started as soon as I updated to Yosemite a couple days ago.

  • Second Display with 30" Display

    Is it possible to use a second display with a 30" cinema display? The card has obviously dual DVI outputs.

    If you have an older Mac Pro with the Nvidia GeForce 7300 GT graphics board, only one port is the dual-link DVI needed by the 30" display. All other Mac Pro graphics boards have two dual-link DVI ports, so can run two 30" displays at full resolution.

  • Can T420 use 3 display with out a dock.

    Can T420 use 3 displays with out a dock.
    One on a laptop display, one via VGA port and another one via DISPLAY port.
    I use T420  4178-BYT with Intel HD Graphic 3000 (no nvidia).

    You have to re-activate it with the original sim card, or one from the same carrier it's locked to (unless it's not locked, then any GSM sim card will do).  The sim card itself doesn't have to be activated, it just has to be the correct one and be inserted.  After that you can use it as an iPod Touch.  See http://support.apple.com/kb/HT3406.

Maybe you are looking for

  • March's TechNet Wiki SharePoint 2010 Guru Winners announced!!

    The results for March'sTechNet Guru competition have been posted! http://blogs.technet.com/b/wikininjas/archive/2014/04/17/the-microsoft-technet-guru-awards-march-2014.aspx <- results page! Congratulations to all our new Gurus for March! We will be i

  • CD-ROM works but won't boot

    Hello, I recently upgraded my beige G3 and installed a new CD-ROM drive. Now when I try to boot from a CD it won't boot. The computer just displays a gray screen. Would anyone have any idea why it won't boot? I know it boots when it is connected to t

  • Ipad wifi access via Macbook Pro?

    I do not have a wireless router at the moment to access wifi for my iPad,however I remember using wifi via settings in my Macbook pro.I was able to use the iPad internet through this.Someone helped me with this but it's been a while & I don't remembe

  • Dinamic variable list

    Hello Experts, I am facing a problem while creating dymanic list for variable in VC model. Ex. When i create dynamic list for Customers, i get list of cusotomers in drop down menu. After selecting a customer from drop down list when i make the next s

  • OnMouseOver refuses to work

    I have 9 mouse overs in a tabled menu of my page. The 1st 8 work beautifully but the last one (image19 as there are other menus on the page with mouseovers) never displays the "on" image and I don't get any error message. I swapped the code for the o