HAving problem with this HP Desktop no video

Ok here is the computer that was purchased HP Debranded TS-0006P-AMDX605. It was bought from newegg, and here is the product page.  http://www.neweggbusiness.com/Product/Product.aspx?Item=N82E16883148037
Operating system is windows 7 home premium 64bit
Now when I first got this computer it would not turn on. I procedded to take memory out and put back in and then I got video.
Everything went smooth until I upgraded the memory. Purchase an extra one gigabyte and when I first plugged it in no video.
It was becuase of this post http://h30434.www3.hp.com/t5/Desktop-Hardware/Upgrading-Memory/m-p/1068519#M40677 
that i figuredout why there was no video. Once i placed the memory chips in the right slots it started up with no problems.
Now this computer was for a friend who was elderly, did not have that much money, and did not understand computers too much. Whenthis computer is on it runs great and he loves it.
Now here is the problem, he would go to turn it on via the power button, and it would not send video to the monitor, he would then hold the power button for about 5 seconds to shut it down, the try again. It would take him about five tries to get it to come on.
I figured it might be the memory, so i went to his house and took out the memory. Seemed to work ok. Now he is having those problems again, where sometimes when he goes to turn it on, it just does not send any power to the monitor.
Now what I told him to do was, to turn the computer on in the morning and leave it on. Just let the monitor go to sleep. When he is done with the computer in the vening, just turn it off. Now this is working for him, but this should not be happening.
His symptoms are that SOMETIMES when he turns the computer on there is no video signal sent to the monitor.
Please does anyone have a solution, or tell me what to check. I have already put another brand new power supply in which did not fix the problem. Also removed the extra memory that was purchased seperately. Still same issues.
Oh and here is the motherboard that is in the HP Desktop http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c01925486

How many GB of ram, and how many slots did the computer come with and were the ram chips the same brand? Say you have 2 ram chips, one has 1 gb and the other has 2gb. Most of the time you wont have a problem but putting equal amounts of ram in each slot is the best thing to do, otherwise your computer could start acting funny. Also never mix different brands of ram chips together. . What I would do is put one chip in the computer and see how it runs. If you still have a problem then swap it out with another. If you still have a problem after only putting one chip in than the ram is not the problem. Coould be a faulty video card and it could be going out on you. Could be a number of things really, but its a process of elimination. Try hooking it up to a different monitor. Let me know.

Similar Messages

  • Having problems with this, can you help?

    Hello everyone, I'm currently making a j2me game, I'm still a newbie to it tho.
    I'm currently making the splash screen and I've followed a tutorial and intended to make my own, problem now is that there is something wrong with the code and is not working as I thought it would. Can you guys check what's wrong with my code? And please advise me on what's wrong and how do I fix it. Thanks alot. The code is below. The Sscreen.java is the one responsible for making and showing the splash screen while the Main.java is the main midlet and calls Sscreen.java.
    // Sscreen.java
    import java.util.Timer;
    import java.util.TimerTask;
    import javax.microedition.lcdui.*;
    public final class Sscreen extends Canvas
         private Display dis;
         private Displayable nxt;
         private Timer tmer;
         private Image im;
         public Sscreen(Display dis,Displayable nxt,Image im)
              tmer=new Timer();
              this.dis=dis;
              this.nxt=nxt;
              this.im=im;
              dis.setCurrent(this);
         private void dismiss()
              tmer.cancel();
              dis.setCurrent(nxt);
         protected void keyPressed(int keyC)
              dismiss();
         protected void paint(Graphics g)
              g.setColor(0x00000000);
              g.fillRect(0, 0, getWidth(), getHeight());
              g.setColor(0x00000000);
              g.drawImage(im,getWidth()/2,getHeight()/2-5,3);
         protected void showNotify()
              tmer.schedule(new Counter(), 3000);
         private class Counter extends TimerTask
              public void run()
                   dismiss();
    // Main Class
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    public class Main extends MIDlet
         private Display dis;
         private Image im;
         private boolean Splash=true;
         public Main(){}
         protected void destroyApp(boolean arg) throws MIDletStateChangeException {
              notifyDestroyed();     
         protected void pauseApp() {     }
         protected void startApp() throws MIDletStateChangeException {
              dis=dis.getDisplay(this);
              if(Splash)
                   Splash=false;
                   try
                        im=Image.createImage("/bg.png");
                        new Sscreen(dis,new Temp(),im);
                   catch(Exception e)
                        System.out.println("Prob 2");
         class Temp extends Form implements CommandListener
              private Command exitCommand = new Command("Exit", Command.EXIT, 1 );
              public Temp()
                   super("Main");
                   addCommand( exitCommand );
         setCommandListener( (CommandListener) Main.this );
              public void commandAction(Command arg0, Displayable arg1) {
                   notifyDestroyed();
    }

    i think problem is here
    *setCommandListener( (CommandListener) Main.this );*instead use
    setCommandListener(this );

  • Still having problem with this sql select... any suggestions!  tx

    The following code has a result, I need to modify the select somehow which only gives me the rows which are common between all PLSTS.
    Any suggestions?
    Thank you
    SELECT DISTINCT P.PLST, P.MENU, I.PNL, P.ACCESS
    FROM AUTHITEM P, I.MENUITEM
    WHERE P.MENU = I.MENU
    AND P.PNL = I.PNL
    AND P.MENU IN ('MSN, CPP')
    AND P.ACESS >= 8
    AND EXISTS
    (SELECT K.PLST,COUNT (*)
    FROM AUTHITEM K, J.MENUITEM
    WHERE K.MENU = J.MENU
    AND K.PNL = J.PNL
    AND P.MENU = K.MENU
    AND I.PNL = J.PNL
    --AND P.PLST !=K.PLST
    --HAVING COUNT(*)   =2
    GROUP BY P.PLST, PMENU, I.PNL, P.ACCESS)
    This is the result with having count (*) = 2 and plst !=plst comment
    PLST MENU PNL ACCESS
    C001 MSN LNAME 14
    C002 MSN LNAME 14
    B008 MSN LNAME 14
    B005 MSN FNAME 14
    M009 MSN LNAME 14
    C001 MSN GNAME 14
    C002 MSN GNAME 14
    B008 MSN LNAME 14
    C001 MSN FNAME 14
    C002 MSN FNAME 14
    k008 CPP MNAME 14
    If I add having count (*) = 2, I do not get any results
    I need this result
    PLST MENU PNL ACCESS
    C001 MSN LNAME 14
    C002 MSN LNAME 14
    C001 MSN GNAME 14
    C002 MSN GNAME 14
    C001 MSN FNAME 14
    C002 MSN FNAME 14
    Thank you

      > I need this result
      > PLST MENU PNL   ACCESS
      > C001 MSN  LNAME 14
      > C002 MSN  LNAME 14
      > C001 MSN  GNAME 14
      > C002 MSN  GNAME 14
      > C001 MSN  FNAME 14
      > C002 MSN  FNAME 14
    i think based on your original posting what you need on your groupings are the columns MENU, PNL, ACCESS and exclude PLST.
      SELECT DISTINCT P.PLST, P.MENU, I.PNL, P.ACCESS
        FROM AUTHITEM P, I.MENUITEM
       WHERE P.MENU = I.MENU
         AND P.PNL  = I.PNL
         AND P.MENU IN ('MSN, CPP')
         AND P.ACESS >= 8
         AND EXISTS (SELECT 'x'
                       FROM AUTHITEM K, J.MENUITEM
                      WHERE K.MENU = J.MENU
                        AND K.PNL  = J.PNL
                        AND P.MENU = K.MENU
                        AND I.PNL  = J.PNL
                        AND P.PLST !=K.PLST
                     HAVING COUNT(*) = 2
                     GROUP BY PMENU, I.PNL, P.ACCESS)note: untested

  • I'm having problems with iMovie - some of the video clips are black and can't watch them

    I was trying to view the video clips again in the iMovie folder but they are black now and can't watch them.  How to restore them?
    Thanks

    Try using disk utility to verify/repair you hard drive, Take a look at this link, http://support.apple.com/kb/HT1782?viewlocale=en_US&locale=en_US

  • I keep having problems with this..

    Some of my songs, get cut off at the end and it has been happening right from when I first bought it. I just end up having to delete them and add them again. Is there something I can do to fix this?

    Try updating to latest flash 11.4, it is released today.
    http://download.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_11_plugin.exe
    or http://get.adobe.com/flashplayer/
    thank you

  • Still having problems with this....

    Hi all,
    Ok I want to make the published .swf file have a transparent background. So I went so the Published settings and in the HTML section I chose Transparent Windowless. But I am still getting a solid color for the background. I did make sure that in the HTML page that there was the right code to make it transparent. Here is a the code;
    <noscript>
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="550" height="400" id="Untitled-1" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="Untitled-1.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#000000" />    <embed src="Untitled-1.swf" quality="high" wmode="transparent" bgcolor="#000000" width="550" height="400" name="Untitled-1" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
        </object>
    </noscript>
    I also confirmed  that the wmode="transparent as shown above is also in the body code.  What am I doing wrong here?  By the way this is using action script 2 if that makes any differance. Thanks for any help.

    Hey,
    I started looking at the code in the HTML and found that I had to add this code my self:
    <param name="BGCOLOR" value="#831401" />
    <param name="wmode" value="transparent">
    <embed src="viewer.swf" width="534" height="417" quality="high"
    pluginspage="your_url_here..." type="application/x-shockwave-flash" bgcolor="#831401" wmode="transparent"></embed>
    After adding that code it does indeed make a transparent background for the .swf. Would I need to do this any time I want that? Or should Flash do it when it generates the .swf? Thanks so much for the help.

  • I am having problems with my Blackberry Desktop Software.

    I installed/downloaded version 4.2 for my 8300 (curve).  Can someone tell me the best/latest version?
    Thanks for your help!

    yes it's easy. Go here and follow the instructions.
    http://na.blackberry.com/eng/services/devices/#tab_tab_update
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Can't set up email on Note 4. anyone else having problems with this?

    Just got the Note 4 today and have been unable to set up an email acct using the email client. Keep getting the msg "Unable to set up acct. Authentication failed." I have used the same settings to set up the acct on other devices. Any help much appreciated.

        ZWM,
    We definitely want to help resolve this for you.  However, the security settings are dependant on how your EDU accounts are set up.  You can of course change them using trial and error and test for successful set up.  Otherwise you may need to reach out to the Network Administrator to confirm settings and compatibility.  Please let us know if we can further assist. Thanks
    TrevorC_VZW
    Follow us on Twitter @VZWSupport

  • Having problem with hp computer freezing up and rebooting? have already updated video drivers

    I having problem with HP Slimline Desktop with AMD Vision, freezing up and rebooting, and will sometimes show horiztonal lines across the screen, making screen unreadable. Have had problem for a few weeks, I have already checked with HP tools hard drive and video display both check out, and have I restored the system back to its orginal version by using partion drive and, none seems to help get rid of the freezing and rebooting of PC. Any thought what need to look at?

    Can you locate a product number on the system that is freezing??
    I am an HP employee, but my views are my own and are not endorsed by HP.

  • I have been having problems with my FaceTime for the last few weeks. Up to then I was able to use it daily and then it suddenly stopped functioning. I have 4 friends in the same situation. Is there a problem centrally with Apple? Anyone else with problems

    I have been using FaceTime regularly over the past year or so and suddenly it has stopped working. It seems to dial up and says its connecting and then just switches off. I have a number of other friends who are also having problems with this and also on their iPhones. Does anyone have an answer to this problem?

    Make sure all parties are running IOS 7.1.1
    http://support.apple.com/kb/TS5419

  • Problem with this trigger

    Hello, I am new to Oracle and I am having problems with this trigger:
    CREATE OR REPLACE TRIGGER myTrigger
    AFTER INSERT OR UPDATE OF aField ON myTable
    DECLARE
    myVariable NUMBER(2);
    BEGIN
    SELECT COUNT(keyColumn) INTO myVariable
    FROM myTable
    WHERE TO_CHAR(myTableDate,'mm') = (SELECT TO_CHAR(SYSDATE,'mm') FROM DUAL);
    IF myVariable > 4 THEN
    RAISE_APPLICATION_ERROR(20605, 'Here is an error.')
    END IF;
    END;
    Every time the trigger is executed, this error happens:
    ORA-06502: PL/SQL: numeric or value error: number precision too large
    ORA-06512: at line 10
    How do I resolve this problem?
    Thank you.

    Hi,
    user12120979 wrote:
    Hello, I am new to Oracle and I am having problems with this trigger:
    CREATE OR REPLACE TRIGGER myTrigger
    AFTER INSERT OR UPDATE OF aField ON myTable
    DECLARE
    myVariable NUMBER(2);
    BEGIN
    SELECT COUNT(keyColumn) INTO myVariable
    FROM myTable
    WHERE TO_CHAR(myTableDate,'mm') = (SELECT TO_CHAR(SYSDATE,'mm') FROM DUAL);
    IF myVariable > 4 THEN
    RAISE_APPLICATION_ERROR(20605, 'Here is an error.')
    END IF;
    END;
    Every time the trigger is executed, this error happens:
    ORA-06502: PL/SQL: numeric or value error: number precision too large
    ORA-06512: at line 10
    How do I resolve this problem?
    Thank you.Are you sure the code you posted is what's actually running?
    I would expect the missing semicolon after:
    RAISE_APPLICATION_ERROR(20605, 'Here is an error.')to keep this from even compiling.
    Error numbers are supposed to be negative. That will cause a run-time error when you try to raise the error.
    This isn't actually an error, but there's rarely a need to use dual in PL/SQL.
    WHERE TO_CHAR(myTableDate,'mm') = (SELECT TO_CHAR(SYSDATE,'mm') FROM DUAL);can also be done this way:
    WHERE TO_CHAR(myTableDate,'mm') = TO_CHAR(SYSDATE,'mm');Actually, the condition above would work even outside of PL/SQL.

  • I amm having problems with My Leaderboard in Pga tour website

    The PGATOUR golf site is one of my favorite sites . I always track my golfers by using the 'My Leader board' but lately I am having problems with this. Every time I visit this site I can't seem to add or delete any golfer. I have one golfer permanently there, I can remove him but when I want to add a different golfer this same golfer appears (Zack Johnson).
    Even when I go to the drop down list and choose a golfer, Zack Johnson appears again.
    Regards, John Halloran.

    Is there any chance of a reply to this problem from firefox.It can't be that big a deal. I use to use internet explorer and never had this problem.

  • Hi! I´m having problems with showing video files in Qlab on my Macbook Air. A sound/video technician told me to "blow out" my Mac. Was told to use  cmd+ r  when restarting. Is this the right way?

    Hi! I´m having problems with showing video files in Qlab on my Macbook Air. It started suddenly. Consulted a sound/video technician who told me to "blow out" my Mac. Was told to use cmd+r  when restarting. Is this the right way to clean up my Mac? And is it likely that some kind of bug is causing problems for Qlab to show video files? I´ve already tried with a bunch of different video files and sometimes Qlab plays them and sometimes not. I need the Qlab playlist for a theatre show and only have a week until showtime so starting to really worry. Is there anyone out there who can help?

    Your Mac runs maintenance in the background for you.
    Command + R gives you access to restore, repair, or reformat the drive using OS X Recovery
    No idea why that was suggested.
    You may have a third party video player installed that's causing an incompatibility issue.
    Check these folders:
    /Library/Internet Plug-Ins/
    /Library/Input Methods/
    /Library/InputManagers/
    /Library/ScriptingAdditions
    ~/Library/Internet Plug-Ins/
    ~/Library/Input Methods/
    ~/Library/InputManagers/
    ~/Library/ScriptingAdditions
    The first four locations listed are in the root-level Library on your hard disk, not the user-level Library in your Home folder.The tilde (~) represents your Home folder.
    To access the Home folder in OS X Lion or Mountain Lion, open the Finder, hold the Option key, and chooseGo > Library.

  • I'm having problems with videos, they shake and the images break up back and forth into striped colors, how do I fix this?

    I'm having problems with videos, they shake and the images break up back and forth into striped colors, how do I fix this?

    1) This is because of software version 1.1. See this
    thread for some options as to how to go back to 1.0,
    which will correct the problem...
    http://discussions.apple.com/thread.jspa?threadID=3754
    59&tstart=0
    2) This tends to happen after videos. Give the iPod a
    minute or two to readjust. It should now be more
    accurate.
    3) This?
    iPod shows a folder icon with exclamation
    point
    4) Restore the iPod
    5) Try these...
    iPod Only Shows An Apple Logo and Will Not Start
    Up
    iPod Only Shows An Apple Logo
    I think 3,4, and 5 are related. Try the options I
    posted for each one.
    btabz
    I just noticed that one of the restore methods you posted was to put it into Disk Mode First rather than just use the resstore straight off, I Have tried that and seems to have solved the problem, If it has thank you. previously I have only tried just restoring it skipping this extra step. Hope my iPod stays healthy, if it doesnt its a warrenty job me thinks any way thanks again

  • I'm having problem with exporting video from premiere pro cc 2014

    I'm using Adobe Premiere Pro CC 2014 and I'm having problem with exporting video.
    When I click Export and media, the window for exporting appears and it starts exporting video.
    But after a few minutes, it looks like it has completed exporting video and says there's a bug in exporting.
    It literally says it has a problem with compiling, but I don't know what the real problem is.
    I tried many things like restarting computer and Premire Pro but it's no use.
    But it works when I use Adobe Media Encoder CC 2014 for exporting video.
    If anyone knows any possibilities about why this problem happens, please let me know.

    I'm having a similar issue.  When I go to export my project, I add it to the render queue, set it up with the h.264 settings that I've used with countless past versions of the program, and then hit render.  Randomly, at some point in the process, the render just stops and the ETA just keeps climbing.  I actually had to save an XMF file of the CC 2014 project and bring it into the previous CC version of Premiere just to finish it.  Even a clean re-install of CC 2014 doesn't work.

Maybe you are looking for

  • How to maintain material master data in plant....

    Hi all, while creating BOM I am getting an error "no material master data in plant'  can some one help me how to maintain the material master data in plant Regards, Balu

  • Problem syntax in BI Publisher

    10.1.3.2. Can anyone explain me or give me a guide documentation about BI Publisher especially in creating rtf template. Because how to implementation code to initial, but not create a blank paragraph. and for looping I want study more if we want cra

  • Execute external operating system command

    Hi Friends, I have a requirement to run a script file with extention '.PL' on the application server using ABAP. i have sample how to run it in XI. XI3.0 provides a very simple way of handling this using the "Operating System Command" in the File Ada

  • Payment Check with details-- Overflow

    Hi All, Scenario is like this:  We have pre-printed cheque stationary in sequential number i.e each page represent one cheque with number. We will print Document details n Cheque in single page. Its works fine if each cheque documents details fit in

  • Character Mode printing in Reports 9i on winXP

    I need to print a pre printed stationary Report in character mode. I am using reports9i. i had made all the basic changes,but it is not working for me.So please let me know the exact solution for this problem.This is very urgent ! Reagrds Manoj Baghe