How can I set up a second monitor using the DVI, a mini Displayport to dvi?

Hey guys,
In my office I'm trying to set up a mac with two displays, Samsung screensync sa450s, using a Startech MDP2DVIW mini displayport to dvi, and the DVI port found on the ATI Radeon HD 5770.
However, whichever monitor is plugged in through the mini displayport never shows video, and instead will just flicker sometimes, no matter which monitor I use, or which of the mini displayports i use. The system profiler recognizes both monitors, and has all of the specs on both monitors, but only the monitor connected directly to the DVI displays anything, even if it is the secondary monitor.
The StarTech does still work with the macpro that used to be in this spot, and the only salient distinction I can find is that the old computer has Mountain Lion, while the new one is still running Snow Leopard. Is this a case where we should just update the OS? or is there another fix?
I've also read online that many people have been not fully plugging in these mini displayports, so I'm worried that I'm doing that, but then I'd figure it wouldn't have worked when I plugged it into the old computer unless my predecessor had made some hardware adjustments.
Let me know.

A frequent solution to problems like the one you describe involves pushing in the Mini DisplayPort cable-end.
It should be inserted until essentially ALL of the metal end disappears inside the jack on the 5770 board.
Is this display wider than 1920 wide?
EDIT:  The Startech MDP2DVIW adapter you cited is a passive adapter suitable for 1920 wide or less. You should be using ACTIVE adapters, about US$35. They cost a little more, but are much more trouble-free. The ACTIVE designation means they contain booster circuitry to raise the Voltage levels up to true DVI levels. The default converter produces good timing, but the signals are really low.

Similar Messages

  • How do I set up a second iphone using the same iTunes account?

    How do I set up a second iphone on the same iTunes account but give my wife ability to have her own calendar and contacts?

    Create a separate iTunes library for each device. Note: It is important that you make a new iTunes Library file. Do not just make a copy of your existing iTunes Library file. it will work. I am using it through this

  • How can I set up an external monitor to extend my screen in windows 7 bootcamp?

    How can I set up an external monitor to extend my screen in windows 7 bootcamp?  I have updated bootcamp to the latest version.  The monitor I have works while I am using Mac OS X. While in bootcamp the monitor is dectected and I am able to select the settings and displays however the external monitor remains alseep.  I hooked it up using a mini display port to VGA adapter.  Any suggestions?
    Thanks

    On your Windows desktop right click and select Screen resolution from the menu. You should see a window like this:
    Make sure you select Extend and then set your resolutions for each monitor.
    If this does not work for you try asking on a Windows forum about extending displays to a second monitor.

  • How can I set up a second password on my teenager's iPhone

    How can I set up a second password on my teenager's iPhone

    What do you mean a second password? A second password where?
    Cheers,
    GB

  • I bought a used ipad on ebay and the icloud acct is still linked to the old owner who doesn't remember the acct information. How can I set up my apple id on the iPad.

    I bought a used ipad on ebay and the icloud acct is still linked to the old owner who doesn't remember the acct information. How can I set up my apple id on the iPad?

    You will need the previous owner's Apple ID and Password to:
    1. Turn off Find My iPhone
    2. Erase device
    3. Reactivate device

  • How can i set up multiple user accounts for my new ipad mini?

    How can i set up multiple user accounts for my new ipad mini?

    The iPad mini is basically a one user device. There are no Accounts. You can set up restrictions so that only you can do certain things.

  • How can I set up an email signature in the Nokia 822

    How can I set up an email signature in the Nokia 822?

        Great question, Robobenn! Here is how to add the signature:
    From the Start screen, tap the Mail tile.
    Tap the More icon.
    Tap settings.
    To enable, tap the Signature on/off switch.
    Scroll to, then tap the Signature field.
    Enter the desired signature, then tap the Checked icon.
    For additional support, go to: vzw.com/support
    Thank you,
    LenaA_VZW
    Follow us on Twitter @VZWSupport

  • How can i set up my macbook pro that the sent emails show up in the sent folder?

    How can i set up my macbook pro that the sent emails show up in the sent folder?

    look at the Preferences and open the "Mailbox Behavior"  maybe the sent mail is being stored on the server?
    I going to have this post moved to the "Mail" forum

  • HT4623 How can u set up your iphone when all the files are deleted?

    How can I set up my iphone if all the files are deleted?

    What files are deleted?
    Please explain

  • How Can You Track Your Ipod If Lost Using The Serial Number

    How Can You Track Your Ipod If Lost Using The Serial Number?

    The find my iphone app has nothong to do with it.
    That app simply allow you to find other devices using your ipod.  It has nothing to do with fining the device on which it is installed.
    If you set up the find my ipod feature that is built into your ipod and the ipod is on and it is connected to wi-fi and it has not been restored, then you may be able to get an approximate street address using icloud.
    Othrewise, it cannot be tracked.

  • How can i know if my query is using the index ?

    Hello...
    How can i know if my query is using the index of the table or not?
    im using set autotrace on...but is there another way to do it?
    thanks!
    Alessandro Falanque.

    Hi,
    You can use Explain Plan for checking that your query is using proper index or not. First you need to check that Plan_table is installed in your database or not. If it is not there THEN THE SCRIPT WILL BE LIKE THIS:
    CREATE TABLE PLAN_TABLE (
    STATEMENT_ID VARCHAR2 (30),
    TIMESTAMP DATE,
    REMARKS VARCHAR2 (80),
    OPERATION VARCHAR2 (30),
    OPTIONS VARCHAR2 (30),
    OBJECT_NODE VARCHAR2 (128),
    OBJECT_OWNER VARCHAR2 (30),
    OBJECT_NAME VARCHAR2 (30),
    OBJECT_INSTANCE NUMBER,
    OBJECT_TYPE VARCHAR2 (30),
    OPTIMIZER VARCHAR2 (255),
    SEARCH_COLUMNS NUMBER,
    ID NUMBER,
    PARENT_ID NUMBER,
    POSITION NUMBER,
    COST NUMBER,
    CARDINALITY NUMBER,
    BYTES NUMBER,
    OTHER_TAG VARCHAR2 (255),
    PARTITION_START VARCHAR2 (255),
    PARTITION_STOP VARCHAR2 (255),
    PARTITION_ID NUMBER,
    OTHER LONG,
    DISTRIBUTION VARCHAR2 (30))
    TABLESPACE SYSTEM NOLOGGING
    PCTFREE 10
    PCTUSED 40
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 10240
    NEXT 10240
    PCTINCREASE 50
    MINEXTENTS 1
    MAXEXTENTS 121
    FREELISTS 1 FREELIST GROUPS 1 )
    NOCACHE;
    After that write the following command in the SQL prompt.
    Explain plan for (Select statement);
    Select level, SubStr( lpad(' ',2*(Level-1)) || operation || ' ' ||
    object_name || ' ' || options || ' ' ||
    decode(id, null , ' ', decode(position, null,' ', 'Cost = ' || position) ),1,100)
    || ' ' || nvl(other_tag, ' ') Operation
    from PLAN_TABLE
    start with id = 0
    connect by
    prior id = parent_id;
    This will show how the query is getting executed . What are all the indexes it is using etc.
    Cheers.
    Samujjwal Basu

  • I lost my Iphone 3GS. My brother has given me his Iphone 4 now. We both use the same notebook to update and sync our phones. I would like to know how can i reconnect back to my account using the Iphone which was previous used by my brother.

    I lost my Iphone 3GS. My brother has given me his Iphone 4 now. We both use the same notebook to update and sync our phones. I would like to know how can i reconnect back to my account using the Iphone which was previous used by my brother.

    If you are saying that you both have iCloud accounts and use the same icloud ID, then yes, the contacts will be deleted.  The idea is that all devices using the same icloud ID are kept in sync.  You need to use different IDs.  You can keep the same iTunes ID so you can share the songs and apps.  But use different icloud IDs.

  • How can I convert .pdf file to .doc using the free adobe reader app? when I try to convert the .pdf file it asks me to sign in. when I click on "sign in", I am taken to a service subscription page. So, no free conversions using free adobe reader app?

    how can I convert .pdf file to .doc using the free adobe reader app? when I try to convert the .pdf file it asks me to sign in. when I click on "sign in", I am taken to a service subscription page. So, no free conversions using free adobe reader app?

    As has been mentioned Adobe Reader cannot export PDF page content. Nor can it create PDF or manipulate PDF page content.
    What you can do is use one of Adobe's online subscription services. Two provide for PDF  to Word export.
    There's ExportPDF and PDF Pack.
    Be well...

  • How can I configuration MBean in weblogic server  using the console ?

    How can I configuration MBean in weblogic server using the console ?
    I hear people talking about mbeans in weblogic server I have look in the console I can not find where , or how to do it.
    can some body explain that or a link that explain it, how to do it on the console ?

    Hi,
    Registering Custom MBeans from Admin Console is not yet possible. But yes there are ways to Configure and Utilize Custom MBeans ...
    http://weblogic-wonders.com/weblogic/2010/02/16/registering-and-invoking-custommbeans/
    Thanks
    Jay SenSharma

  • If I download a video from my video camera to a new (current 1/12) iMac 21 inch, how can I burn it to a DVD using the computer itself. Is this possible? Do I need to buy additional software. Two salespeople at the Apple were a little confused about this.

    If I download a video from my video camera to a new (current 1/12) iMac 21 inch, how can I burn it to a DVD using the computer itself. Is this possible? Do I need to buy additional software. Two salespeople at the Apple were a little confused about this. Thank you.

    The DVD recorder I'm referring to is one I've use for years. It is not attached to my aging iMac in any way. I simply play the video from my camcorder (mini-dv tape based Canon HV20)  into the DVD recorder and create a DVD that can be played in any DVD player. I can only do minimum editing so what goes in is what I get. This has been fine for creating dupes of the various things I shoot.
    If I buy a new iMac (21 inch), I'd like to be able to download the video to the iMac through iMovie, work with it to whatever degree I wish, and burn it to a DVD that can also be played in any DVD player -- or to use as a master to dupe copies.
    What I'm understanding from you and others is that this would be possible if Apple had included iDVD in the software that comes with the iMac, or if I purchase the iLife Family Pack, or buy the correct version of Toast. I'm hoping I can persuade Apple to sell me an iMac with iDVD installed.
    Essentially I want to move from a basic process of creating DVD copies to the more sophisticated process of creating one from an iMac.
    Thank you again for your help and wisdom.

Maybe you are looking for

  • How to access root apps folder again in Time Machine after a restore?

    I just did a Time Machine full system restore which worked, but now it doesn't look like Time Machine is backing up my root level apps folder. All of my root apps were indeed restored, but if I try to go into Time Machine with my (root) Apps folder o

  • TC speed problems

    Hi. My TC worked great for about two days and then I started noticing that downloads were taking a very long time, much longer than at first and definitely much longer than the AirPort Extreme it replaced. My two computers also now fail to notice the

  • [SOLVED] OSCDIMG Tool Does Not Work on Windows 10? ReadFile() fails with error code 87. (The parameter is incorrect) on ReFS Storage Space Mirror

    Hello, What could be the reason of OSCDIMG premastering tool not working in Windows 10? I'm trying to rebuild ISO from the admin setup point and having problems with OSCDIMG failing to read files from the master folder: E:\Images>bin\oscdimg.exe -boo

  • Accessing table in CAF

    Hi, I have created a table in Dictionary Explorer and deployed it. I want to access this table to perform operations like add, delete and search in a CAF application. I have create a CAF application, but cannot find anyway to access the table. So my

  • Stripping off original message text while replying

    Hi, I want to remove the original content from the email when replying. Effectively only the newly added text should be forwarded. How can I construct a message which does this? Any pointers? Thanks, Sunil.