I need a new board Man

hi i am after a micro Atx motherboard and i need the following specs
AMd proccessor
onboard LAN 10/100 ethernet
AGP Slot any speed
DDR Ram any speed
on board sound
does anybody know where i can get a decent Gfx card TV card and hard drive that will fit in this case they have to be low level pci and agp cards
http://www.cclcomputers.co.uk/specs/case/compucase/black/spec.htm

http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php?UID=437
The integrated VGA is as good as any low profile VGA card you will find and it's got an AGPx8 slot for upgrades.
It has sound and LAN as well, supports DDR400 in dual channel ( you must use dual channel to get decent preformance from the integrated VGA ).
The HDD shouldn't be a problem at all.
P.S
You didn't use the http insert option correctly so you should fix the link.
It's probaly this but not sure.
Personally I would expect trouble with the PSU in these cases and a high end system, I would recommend you stick to an XP1700/1800 T-bred ( 0.13u ).
You should also try to get single sided memory to reduce power usage.

Similar Messages

  • Why would they just replace the fans when it needs a new logic board?

    Went to see a "genius" at the Apple store with my Week 12 MBP. Complained about excessive heat and it whining when unplugged, ever since I got it. He sent it off, three days later I got it back in the mail. But when I looked at the repair doc all it says is they replaced the "FAN ASSY, LT, M1" and also the "RT" one. So now I have two new fans (which worked fine before), and that's it. It still get hot enough over the F keys to burn my skin, and it still whines like a baby when unplugged.
    All they have to do is look at the serial number (8612) to know it needs a new MLB, right? What do I do now, call them back and go through this all over again?
    MacBook Pro 2GHz   Mac OS X (10.4.8)  

    Went through the exact same thing with my week 17 MBP. The first repair came back with new power inverter and fan assemblies even though my noise was clearly coming from below the keyboard. The noise continued and if anything was actually worse so I was starting to regret ever sending the computer back in the first place. So I called again and sent it back in. This time, the laptop came back untouched and declared "within spec". Now I was really fired up. I told them I would use it for a week and if the problem continued it will come back. So back it went a third time and this time the logic board was replaced. I have to say, the difference is very noticeable and completely worth it in hindsight. I was almost ready to live with it and am so glad I did not. Be persistent and let them know you are prepared to send it in as many times as it takes.

  • G5 liquid cooled needs a new logicboard...HELP

    My fathers G5 was tested at the apple store.
    they said it needs a new logicboard.
    CAn I do this?
    it has dual 2.5's liquid cooled.
    Do I need to make sure the new logicboard is a match?
    will others work?
    Replacing logicboards is new to me.
    Any advice or info would be greatly appreciated.
    Thanks

    Hi ksgraphite-
    Greetings and welcome to the Apple boards.
    Replacing the logic board will be a very involved job and there is much that could go wrong. If you are up to the task I would suggest checking with these folks: MAC-PRO
    Luck-
    -DaddyPaycheck

  • In need of checkers board

    I need a checkers board code written in Java. With, two differnet collors. Can someone please supply me with the code pleasE?

    Draw a chess board and allow placement of pawns and text,
    as a demo of Java's graphics capabilities.
    c:/Java/cs1073/cs1073/chessBoard/chessBoard.java
    Created: Thu Feb 06 09:49:28 2003
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ChessBoard extends JPanel implements MouseListener
    private Color[] squareColor = new Color[2];
    private final int NUMSQUARES = 8, WIDTH = 400, HEIGHT = 400;
    private int squareSize;
    private int boardSize;
    /* The constructor sets only some of the instance variables.
    The rest are set when the screen is painted.
    public ChessBoard()
    squareColor[0] = Color.lightGray;
    squareColor[1] = Color.gray;
    addMouseListener(this);
    setSize(WIDTH, HEIGHT);
    /* The paintComponent method is called every time the display
    needs to be repainted. Examples: When the window is
    first displayed, when the window is moved, resized,
    maximized, etc.
    Draws an 8x8 grid of alternately colored squares.
    Make the grid as large as it can be to fit in the
    current size of the drawing pane (which is the content pane
    for the JFrame).
    public void paintComponent (Graphics g)
    super.paintComponent(g); // Make sure background is cleared
    int paneHeight = this.getHeight();
    int paneWidth = this.getWidth();
    if (paneHeight < paneWidth)
    squareSize = paneHeight / NUMSQUARES;
    else
    squareSize = paneWidth / NUMSQUARES;
    boardSize = squareSize * NUMSQUARES;
    for (int row=0; row<NUMSQUARES; row++)
    { for (int col=0; col<NUMSQUARES; col++)
    { g.setColor(squareColor[(row+col)%2]);
    g.fillRect(col*squareSize, // x
    row*squareSize, // y
    squareSize, // width
    squareSize); // height
    } // end paintComponent
    /** The mouseClicked method responds to any mouse clicks.
    public void mousePressed(MouseEvent e)
    // Quit if the mouse press falls outside the board
    Point p = e.getPoint();
    int x = (int) p.getX();
    int y = (int) p.getY();
    if((x>boardSize) || (y>boardSize))
    return;
    // Determine which square (i.e. row, col) was selected
    int row = y / squareSize;
    int col = x / squareSize;
    if (row <= 1)
    drawPawn(row, col, Color.black);
    else
    if (row >= (NUMSQUARES-2))
    drawPawn(row, col, Color.white);
    else
    drawMessage(row, "Checkmate!");
    /******** QUESTIONS ****************
    1. What happens to the pawns when the window is resized?
    2. How could we alter the program to retain the pawns?
    // These four methods are not used, but must be
    // implemented because they are required by the
    // MouseListener interface.
    public void mouseEntered(MouseEvent e) {}
    public void mouseExited(MouseEvent e) {}
    public void mouseClicked(MouseEvent e) {}
    public void mouseReleased(MouseEvent e) {}
    /** The drawPawn method draws a pawn shape on the
    specified square in the chess board.
    public void drawPawn(int row, int col, Color c)
    Graphics g = this.getGraphics();
    g.setColor(c);
    // Calculate position of upper left corner of square
    int x = col*squareSize;
    int y = row*squareSize;
    // Draw circle for "head" of the pawn. Dimensions are
    // for the oval's "bounding box".
    g.fillOval(x+(2*squareSize/5), // x
    y+(squareSize/5), // y
    squareSize/5, // width
    squareSize/5); // height
    // Draw a polygon for the "body" of the pawn.
    Polygon body = new Polygon();
    body.addPoint(x+(2*squareSize/5),
    y+(2*squareSize/5));
    body.addPoint(x+(3*squareSize/5),
    y+(2*squareSize/5));
    body.addPoint(x+(4*squareSize/5),
    y+(4*squareSize/5));
    body.addPoint(x+(squareSize/5),
    y+(4*squareSize/5));
    g.fillPolygon(body);
    } // drawPawn
    /** The drawMessage method draws the given string in
    the given row of the chess board, centered
    horizontally.
    public void drawMessage(int row, String s)
    // Set a new font and color
    Font bigFont = new Font("Times New Roman", Font.BOLD, 36);
    Graphics g = this.getGraphics();
    g.setFont(bigFont);
    g.setColor(new Color(0.8F, 0.8F, 1.0F));
    // Determine the position of the string
    FontMetrics m = g.getFontMetrics();
    int x = (boardSize - m.stringWidth(s)) / 2;
    if (x < 0)
    x = 0;
    int y = ((row+1)*squareSize) - m.getDescent();
    if (y<0)
    y = m.getLeading() + m.getAscent();
    g.drawString(s, x, y);
    } // drawMessage
    public static void main(String[] args)
    {  JFrame f = new JFrame("Chess Board");
    ChessBoard board = new ChessBoard();
    f.getContentPane().add(board);
    f.setSize(board.WIDTH, board.HEIGHT);
    f.setVisible(true);
    f.addWindowListener
    ( new WindowAdapter()
    { public void windowClosing(WindowEvent e)
    { System.exit(0);
    } // end main
    } // end ChessBoard

  • I need a new startup disk for my iBook G4, where can I get one?

    I need a new startup disk for my iBook G4, where can I get one?

    Hi, you might call Apple with it's serial# handy & see if they have original replacement discs, other than that...
    http://www.ebay.com/sch/i.html?_kw=ibook+g4+software
    iBook G4 OS X Tiger/ OS 9.2 Install...
    Disk 1 2Z691-5532-A
    DisK 2 2Z691-5533-A
    (Mid 2005), (Late 2006) Model (A11133 Early 2006), Machine ID PowerBook6,7
    Compatibility 
A1133 (12.1 inch), A1134 (14.1 inch), M9846LL/A (12.1 inch), M9848LL/A (14.1 inch)
    Tiger Requirements...
    To use Mac OS X 10.4 Tiger, your Macintosh needs:
        * A PowerPC G3, G4, or G5 processor
        * Built-in FireWire
        * At least 256 MB of RAM (I recommend 1GB minimum)
        * DVD drive (DVD-ROM), Combo (CD-RW/DVD-ROM) or SuperDrive (DVD-R) for installation
        * At least 3 GB of free disk space; 4 GB if you install the XCode 2 Developer Tools  (I recommend 20GB minimum)
    http://support.apple.com/kb/HT1514
    Apple may even have an International version...
    https://discussions.apple.com/thread/5231053?tstart=0
    http://www.ebay.com/sch/i.html?_nkw=mac+os+x+tiger+retail+10.4
    See Tom's, (Texas Mac Man), great info on where/how to find/get Tiger...
    https://discussions.apple.com/message/15305521#15305521
    Or Ali Brown's great info on where/how to find/get Tiger...
    http://discussions.apple.com/thread.jspa?messageID=10381710#10381710

  • My i phone 4 cannot charge continously. it will charge then after few seconds its off then charge again. I cannot open it because it runs out of battery do i need a new battery?please help.

    my i phone 4 cannot charge continously. it will charge then after few seconds its off then charge again. I cannot open it because it runs out of battery do i need a new battery?please help.

    You could always check to make sure itunes is updated to 10.7 but im sure gdgmacdude is
    right.
    thanks
    gdgmacdude
    Hey dude
    are there anymore hardware failure errors u know of
    im kinda a novice apple man and could use all the help i can get
    capp

  • I need a new wallet

    Me Too!!! I'm just starting my rebuild... I've gotten 9 cards in the last 3 months... This is crazy!! Definitely need a new wallet... don't think I can wait until xmas.  *** I think there's a program called 'MINT' that will help keep all accounts straight... something I also need to look into. Oh yeah, Congrats! 

    Awesome!  In my wallet: Venture 15k; Barclay Ring 12.5k; Discover 10k; CareCredit 7.7k; Amazon Store Card 5k. QS 5k; BofA Travel Rewards 3.5k; BofA Travel Rewards 3.5k; BofA Platinum Visa 2k; Barclay Apple Rewards 2k. Total Credit: 66,200. 7/1-FICO: EQ - 789; TU - 781; EX - 690; GOAL: 780 across the board then 800 across the board. Inquiries: EQ: 4; TU: 7; EX 7; Chapter 13 seven years May, 2015. Reset my garden date to 6/27. Gardening until further notice.

  • I acquired a new board for our SCXI chassis. T

    he new board is SCXI-1531. I found a library VI which allows me to look at one channel at a time. Is there an example VI available on the SCXI-1531 to acquire up to 8 channels input simultaneously? I would eventually like to vary the number of channels.

    he new board is SCXI-1531. I found a library VI which allows me to look at one channel at a time. Is there an example VI available on the SCXI-1531 to acquire up to 8 channels input simultaneously? I would eventually like to vary the number of channels.The example titled SCXI-1531 Frequency.vi is a good example that allows measurement and processing of a variable number of channels. To read more than one channel, modify the last section of the SCXI string to "0:2" to read channels 0 through 2 for example. Or use 1, 4 to read channels one and four.
    If you are new to SCXI strings, check out this KB entry: http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/6fc83b7ac9aca5788625615b00823d65?OpenDocument
    Also, to make the vi more flexible for different numbers of channels, use For Loops with auto indexing enabled. Then you can process each channel's data separately without needing to know the exact number of channels beforehand. This is also demonstrated in the attached example.
    Attachments:
    scxi1531.llb ‏62 KB

  • New boards: Music, Imaging, Navigation and Phone A...

    Today we have opened up a few new boards to Support Discussions. We hope these new sections help you to find the right place for your questions and get faster responses from other members.
    In the next few days, we'll be moving some old threads from the other boards to the new ones. For example, existing topics about gps that are now in the Nseries-board may be moved to the new Navigation-board.
    I hope the new boards make sense!
    See you on the boards,
    vandelay & Nokia Support Discussions Team
    I wrote all my posts from 2005-2011 as an "Admin" for this community. I still work for Nokia as an external consultant, so my rank in all posts is now "Employee".

    You need the "PC and MAC software" board under the "Software" heading.
    If this or any post answers your question, please remember to help others by pressing the 'Accept as solution' button.

  • New boards created

    Greetings
    As you may have noticed we have added 2 more boards this afternoon within each Category to better assist the community in having a more focused conversation.
    We added to Notebooks
    "sound and audio"
    "display and video"
    We added to Desktop PC
    "sound and audio"
    "monitors and video"
    We added to Printers and All in Ones
    "mac printing"
    "software and drivers"
    Finally we moved some of the most active threads on these topics to the new boards. If your message was moved you will see a placeholder note indicating  where its new location is.
    Thank you for your ongoing participation in the HP Consumer Support Forum!
    Message Edited by DaniW on 12-17-2008 09:30 PM
    DaniW
    HP Forum Admin
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

    pagecontext.putsessionvalue(String,Object) method doesnt exists. I need to pass a dictionary object. Please let me know if any other options are available.
    Thanks,
    Viswanath

  • New board wont power up? [DV6]

    hi guys, recently bought a motherboard on ebay(it was marked that it DOES power up and all fan works and everything) and i made the swap from my DV6 3210us to a DV6 3160us, and unfortunately it wouldnt power up, HOWEVER the charging light is on and when i press the Power button the LED would turn on then off no fan spin or anything(see video) what could be the cause of this?
    what im thinking is the AC Adapter trying to power the motherboard was rated at 65w from my DV6 3210us, the new board i receive is from a DV6 3160us and it requires a 90w AC Adapter, could it be the issue? or is the motherboard bad? CPU from the 3160 works just fine, infact im using the CPU on my 3210 as i write this up. so what should i do?
    this is the video with me trying the new motherboard with the necessary cables plugged, you can see what im referring too
    http://vimeo.com/23890296
    please let me know whats wrong with it, thanks
    UPDATE: read up on a thread regarding someone who trys to charge a notebook that requires 90w ac adapter with a 65w and one guy mentioned that the 65w might cause the laptop issues and wouldnt let it turn on... could that be just a safety issue? because idk how HP laptops work, if its really needed to have the right ac adapter wattage to make it power up

    well i had the necessary cables plugged in order to make the board powerup, did the same with my current laptop and it did fire up, however the new one thats in the video doesnt want to but im assuming its the low 65w adapter trying to power a 90w motherboard you understand what im trying to say?
    and ive stated that i took the CPU which is a Phenom II Quad Core from the 3160 which is the one i bought from ebay and move it to my 3210 which is a Phenom II dual core and its working just fine so it isnt the processor issue, the board has an ATI 5650 Dedicated
    The person said that the client just gave it to them, he did the test, Motherboard LED lights up, fan spins, CPU works etc.
    like i said could it be that the 65w ac adapter is too weak to power up the 3160 board? because of the fact it has that dedicated graphics card which im sure needs more juice?

  • H61M-E33 (B3) powers on then hangs and enters boot loop (new board)

    Hi guys bought all the kit in my sig and I put it all together connecting to my screen via VGA on MOBO and powered up.
    I get one long beep and a message on the screen
    The top half details all my components and it looks like everything is detected properly
    under that it says
    all settings were reset to default values
    Press F1 to setup
    Press F2 to continue
    If I press either the the system shuts down and restarts over and over with nothing making it onto the display.
    It gets stuck like this so I reset CMOS and takes be back to square one (rinse and repeat)
    I have tried
    Reset CMOS
    Re seat and change slot for RAM
    Push RAM more firmly into socket
    Swapped for tow different sticks of RAM I had
    Disconnected everything from MOBO headers accept bare minimum ie power and PWR Switch
    Removed board from case laid it on cardboard and tried again.
    Every time same result
    I don't know where to go from here
    Any one got any ideas?
    Cheers Jake

    just an update sent this board back to supplier who said there was no problem but would send me a new board anyway.
    New board arrived and looked like it was a newer addition so possibly has an updated BIOS. Anyway put it all together and worked like a charm.
    No trying to connect to an Onkyo tx-sr607 receiver via HDMI but having big problems. With amp clicking and not getting sound to come through properly and no bit-streaming of DTS-HD
    Do I need to use the realtek sound and drivers?
    all the sound should go through the HDMI cable.
    Anyone know of any settings I need to adjust?

  • One worry about buying a new board - X2 CPUs?

    i am planning to build a new system in august and have decided on a 4400+ (dual core) with the MSI neo4 platinum mobo.
    i've built plenty of pc's in the past but have never flashed a bios (never needed to). one thing i am not clear on is what will happen if the board i get has an older bios and wont recognise the 4400+?  will it boot normally but only see one core, or will it simply not boot at all.
    i know some boards let you do an emergency recovery thing off a cd or floppy, either with a batch file or just the rom image.  Is this the same for this board? i mean if it wont boot because it wont detect the CPU, can i still flash the newer bios to the board?
    thanks for any replies - i did a search for neo4/x2/ bios etc but didnt get anything so apols if already answered

    Quote from: tommo123 on 01-July-05, 01:07:26
    i hope you're right rsheppick
    no idea what i'd do if it wont boot. 
    I promise if it doesn't boot it has nothing to do with your motherboard needing the newest bios for that cpu.
    I want to point out that if the motherboard knows what a 90NM cpu is then you are fine which all new MSI boards do.
    For further proof I will quote an artical from Anandtech that can be read HERE!
    Updating DC BIOS & Revision E Memory
    Updating BIOS for Dual Core with an x2 Processor
    This brings up the nagging question that is always asked when BIOS upgrades are required for certain CPUs. What do you do if you have a board that needs a BIOS upgrade for dual-core and you only have a dual-core chip? We asked AMD this question and got the following reply:
    "If the BIOS you are working with (original BIOS in the board) supports a rev E single core (AKA... 90nm as most new boards should), it will allow you to flash the BIOS to a BIOS that supports rev E dual core. In my experience, a DC processor with single core rev E support will run fine, but only as a single core. If the BIOS doesn't support rev E (In other words, you may have a good board, but the BIOS is pretty old), you will likely need to install a pre-rev E (AKA-130nm) AMD processor to flash the BIOS.
    I'm told that if a customer can't flash their BIOS, many mobo vendors will mail out the BIOS chip to them (if it's not soldered down, obviously)"

  • Should I buy a new board?

    Im looking at maxing out my CPU on my K7n2-Delta L board
    2.2Ghz is the fastest cpu the board will take.
    Need help making up my mind.
    I have $100-150 to spend.
    DO I buy the new cpu?
    Do I buy a new board/CPU combo?
    The new board must be able to take x8AGP
    Enermax p365 PSU
    IDE
    ALSO MAJOR here It must be 100% compatable with  DDR PC3200 • CL=3 • UNBUFFERED • NON-ECC • DDR400 • 2.6V • 128Meg x 64  Crucial Ram.
    So, do I look at BOARD/CPU upgrade or should I just max out the cpu for the board I have?

    Quote from: Glenn on 23-August-05, 07:13:51
    Save your money and by an Athlon 64. You'd be pissing away your money. You won't get much more  that is unless I am reading your first post incorrectly.
    What are you saying here? You ONLY have 128MB RAM or what?
    More RAM will give you a boost, spend that money on some good RAM that will go in your next system. For instance some good Mushkin http://www.newegg.com/Product/Product.asp?Item=N82E16820146355
    Otherwise save your money I personally think it would be a waste ATM.
    BHA!  No I cut and past the wrong one in sorry.  I have 2 sticks 1GiG each.  Total of 2 gigs in Dual Channel mode.  It is Crucal DDR400 ram

  • Pages downloaded, but I still can't open iCloud pages from iPad. Says that I need a new version of Pages on my Mac

    For my Mac Pro, after I downloaded the new Mavericks OS, I downloaded the new pages. However, I still can't open iCloud pages from iPad. Says that I need a new version of Pages on my Mac.
    Please help.

    It appears that you are launching the old version, probably using an icon in your Dock. That icon is an alias & is not updated. You will need to go to your Applications folder & find the new Pages 5 icon & double-click it. Once it is launched, you can right-click on the icon & choose Options > keep in Dock from the contextual menu.

Maybe you are looking for