Graphical skin for editable ComboBox

I am using graphical skins to style a ComboBox. They work fine for a normal combobox. When I make it editable, Flex no longer uses the upSkin, overSkin and downSkin for the editable text area. It seems to use the default Flex skin instead. It is using my editableUpSkin, editableOverSkin and editableDownSkin for the arrow area, though. What do I need to change to use my graphical skins for both the editable text area and the arrow area?
Thanks!

Maybe you need to specify a custom itemRenderer you have skinned as well.
If this post answers your question or helps, please mark it as such.
Greg Lafrance - Flex 2 and 3 ACE certified
www.ChikaraDev.com
Flex / AIR Development, Training, and Support Services

Similar Messages

  • Graphics card for editing home video.

    I'm hoping to get a MacBook Pro 15 inch with 8GB and a 750 GB HDD and a 2.5 GHz processor.
    However, it comes with the older Radeon HD 6770M 1 GB graphics card.
    Would this be suitable for editing home video, or would I be better getting the later, more expensive,  NVIDIA GeForce?

    Yes.

  • Need New Graphics Cards For Editing PC

    With the workload I deal with on a regular basis I often find it's my graphics that freeze up or it's just too slow rendering out Premiere Pro, After Effects and 3D work. So I'm looking to purchase either 2x(Mid Range Graphics Cards) or 1x(High End Graphic Card) for my editing PC. I'm really not that tech savi so I'd love some advice/recommendations to what I could/should get. By budget isn't that small but I wouldn't want to spend too much more for little difference (Maximum total £400/$650.12)
    My Current PC Specs
    Processor:
    - Intel(R) Core(TM) i7-2700K CPU @ 3.50GHz, 3501 Mhz, 4 Core(s), 8 Logical Processor(s)
    Motherboard:
    - ASUSTek Computer INC. SABERTOOTH P67
    Memory:
    - 16GB
    Internal Drives:
    - SanDisk SDSSDX-120G-G25 120GB Extreme SATA III 6Gb/s 2.5in Internal Solid State Drive
    - 2x 2TB WD HDD (Were external but now internal
    Video Cards:
    - 2x AMD Radeon HD 7450
    OS:
    Windows 7 Ultimate 64bit
    Programs I Use:
    - Adobe Master Collector CS6 + Video Copilot's Element 3D plugin
    - 3DS Max 2010
    - Boujou 5.0
    - FL Studio 10
    - Cubebase 5
    - Some Steam Games
    If you require any other info or in more detail just ask

    >often find it's my graphics that freeze up
    For video editing, you need to scale your pictures before importing into Premiere Pro
    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large May = Crash http://forums.adobe.com/thread/879967
    -And another crash report http://forums.adobe.com/thread/973935

  • Best Graphics Card for Photo Editing

    Hello All,
    I am a professional photographer. I currently use Photoshop CS5 and Lightroom 4.1. I am in the process of having a new computer built just for editing my photography. The board will be an ASUS P9X79 with an intel Core i7-3820 and 16 GB memory. The technician building the computer would like a recommendation of the fastest and or best graphics card for editing still images.
    All of my work is done in RAW from a 5D MII. 21 megapixel.
    Processing speed has always been a bottleneck for me and Lightroom 4 has not helped.
    Can anyone please recommend the best or fastest graphics card for this system?
    Thank you, Jim

    I would focus on your PS CS5 requirments. If you intend on using a wide gamut display at some point I'd give serious consideration to graphics card that will truly support 30 bit display data (10bit/color) in PS CS5/6.There are only a handful of graphics cards that actually support a 30 bit data path with PS CS5/6. Some links:
    http://helpx.adobe.com/photoshop/kb/photoshop-cs6-gpu-faq.html
    http://www.amd.com/us/products/workstation/graphics/software/Pages/adobe-photoshop.aspx
    http://www.nvidia.com/object/photoshop-cs6.html
    http://forums.adobe.com/message/4487697
    You may also want to read this concerning limitations of using a wide gamut display with non-color manged applications (i.e. browsers, MS Office, etc.):
    http://www.gballard.net/photoshop/srgb_wide_gamut.html

  • Editable Combobox in ADF

    Hi
    is it possible to make the combobox editable ?
    pls advice

    HI Sireesha Pinninti ,
    yaa , Normal combobox is not editable
    is there any alternative for Editable combobox similar to InputComboBoxListofValues
    my requirement is if i have a Country combo box with 2 option India and US , if the enmd user want to opt China , he could type tht
    pls advice
    Regards
    Jeethi George

  • Changing the font of a non-editable ComboBox

    Hello everyone,
    I need a small combobox. So I set a font of a specific size to the combo's
    editor. That works nice als long as the combo is editable; but when it becomes
    uneditable, the default bold font is used and some items don't fit in the
    field any more. How to prevent this?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.plaf.*;
    class ComboEditorFont extends JFrame {
      Font fontM= new Font("Monospaced", Font.PLAIN, 13);
      public ComboEditorFont() {
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(100,100);
        setLayout(null);
    //  Changing the font in the UIManager doesn't work either
    /*    Font defaultComboBoxFont= UIManager.getFont("ComboBox.font");
        FontUIResource fui= new FontUIResource(fontM);
        UIManager.put("ComboBox.font", fontM);
    //    UIManager.put("ComboBox.font", fui);
        JComboBox cmb = new JComboBox(new String[]{"ABC","DEF","GHI","LMO"});
        cmb.setBounds(20,20, 48,20);
    //    cmb.setEditable(true);
        JTextField editor= (JTextField)(cmb.getEditor().getEditorComponent());
        editor.setFont(fontM);
    //    cmb.setRenderer(new MyCellRenderer());
        add(cmb);
    //    UIManager.put("ComboBox.font", defaultComboBoxFont);
        setVisible(true);
      public static void main(String args[]) {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
         new ComboEditorFont();
      class MyCellRenderer extends JLabel implements ListCellRenderer {
        public MyCellRenderer() {
          setOpaque(true);
        public Component getListCellRendererComponent(JList list,
                                                       Object value,
                                                       int index,
                                                       boolean isSelected,
                                                       boolean cellHasFocus) {
          setFont(fontM);
          setText(value.toString());
          Color background;
          Color foreground;
          JList.DropLocation dropLocation = list.getDropLocation();
          if (dropLocation!=null && !dropLocation.isInsert() &&
           dropLocation.getIndex() == index) {
         background = Color.BLUE;
         foreground = Color.WHITE;
          } else if (isSelected) {
         background = list.getSelectionBackground();
         foreground = list.getSelectionForeground();
          } else {
         background = list.getBackground();
         foreground = list.getForeground();
          setBackground(background);
          setForeground(foreground);
          return this;
    }

    - an offense to the english grammarThe exaggeration was meant to be ironic, not mean. Seriously, if a post is unreadable why bother posting it at all?
    offense/non offense, I'd start to teach this language on 15/oct/2009, untill now ---> MSDN, ASM,I don't know if you refer to the Java or English language...
    Either way, hopefully you have merely started learning it - not teaching it! :o)
    - ranging from slightly to completely off-topic
    always exists the different way, my off-topic "for you hide" declaracion for topic,
    I agreed with some rules, disagre with strict..., Swing = something based on variable interpretations about Java decl., isn't exist stricts borders there, only God can tell us, If is it Swing, or if isn't Swing relevants, not my trully,No, no, I meant "off-topic" with regard to the poster's question: he had tackled the problem for editable comboboxes already, and was specifically talking about non-editable comboboxes, so obviously altering the editor as you suggested was hopeless.
    - giving out "coding advice" without any justification
    be sure that 99pct from "answers" fired these guys find out the "coding advice" on Go..., on another forum(s), and they will not returns back here anymore, for not-acceptable Hot Potato Games (if is or isn't topic relevant for this forum), I'm afraid the grammar prevented me to understand this whole sentence...
    help is by Camickr's company, by German Kommunität (rel. for EU TimeZone), I'm only to learn (somehow) this language, Read - Translate ---> T - Write, An online translation system may help you to read these forums, but really don't post text translated this way!
    with peaceFullFace and takeAnyNoticeOfIt kopik,No personal offense meant, I now think you're well-intended (but really awkward all the same).
    Edited by: jduprez on Nov 6, 2009 4:06 PM - fixed spelling - mind you, I'm not a native english speaker either!

  • Graphics Driver for HP Pavilion dv6t-6000 CTO Quad Edition Entertainment Notebook PC for Win 8.1

    Hello Everyone,
    I currently have an HP Pavilion dv6t-6000 Quad Edition with intel i7 and switchable radeon HD graphics card . I have made the jump from Windows 7 to 8.1 as I am a Current University student studying Information technology and have the need to be updated in terms of technology. I found Win 8.1 to run a bit faster on my PC than Win 7. I have ran into a couple of problems when upgrading to 8.1.
    1.) I've been having an issue finding the correct and stable Video Graphics driver for my Radeon HD 6770M switchable graphics. I tried intalling the original Win 7 driver in the HP driver but does not work properly. I have also tried download a generic driver from the AMD Radeon driver website, but the screen is extremly dim when intalled and is almost impossible to use unless I hold a lamp to the LCD screen. The brightness function keys DO get reconized when pressed, but the brighness will not change no matter how high or low the brightness threshold is at.
    2.) It is a bit out of topic, but I have also been having alot of trouble getting the validity fingerprint sensor to work with Win 8.1.
    I would really appreciate if anyone can help me with these issues or point me in the right direction in order to get them fixed. I am an IT student and have done alot of reasearch on these topics but have been unable to get them to work as intented.
    P.S: I have read alot of fixes about brightness using regedit and edditing some values on specific registry entries. I have found them for many other pc manufacturers, but not for HP. Not an expert on registry stuff, but seems like many people get it fixed by doing so. Just an idea.

    Due to the age of this model, HP is only providing drivers for Windows 7. After searching through the HP Forum, I was unable to find a satisfactory solution to your issue.
    Please contact official HP Customer Support in your region / country, via the HP Worldwide Support Portal, for official assistance with your issue.
    If you have any further questions, please don't hesitate to ask.
    Please click the White KUDOS "Thumbs Up" to show your appreciation
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Looking to buy new MacBook Pro for editing with Premiere/After Effects, but wondering about trade-off between Processor Speed and Graphics Card

    I'm a professional video editor (using Premiere and After Effects) looking to buy a new MacBook Pro and am deciding between two models. The slightly older model has a 2.8GHZ i7 (3rd generation) Quad Core processor with a 1GB SDRAM of NVIDIA GE FORCE GT 650M Graphics Card. Then newer model has a 2.3GHZ i7 (4th generation) Quad Core preocessor with 2GB SDRAM of NVIDIA GE FORCE 750M/Intel Iris Pro Graphics Card.
    Which makes the most difference (processor speed vs. graphics card) with editing with Premiere and After Effects?
    Any help/guidance would be greatly appreciated.
    Thanks!
    mike

    Poikkeus wrote:
    1. Your MBP will be somewhat slower than your iMac, as reflected in the general speed; desktop Macs have more RAM and storage.
    You recon? If he get's the 17", he would have up to 8x more RAM, 4 x more GPU,, and  a bit faster CPU;.
    2. Be aware of the advantages and disadvantages of extra RAM. Loading up the slot will make juggling multiple applications easier, like Photoshop, VLC, and Safari. However, more than 4gigs of RAM will make loading your MBP on startup twice as slow - at least a minute, probably longer. That's why a MBP user with extra RAM should sleep their machine nearly always when not in use, rather than powering off. 
    I did not know this, I just upgraded from 4gb to 8gb the other day. Have not noticed it being slower, but I don't often shut it down. It's nice to not even have to bother with ifreemem.
    3. Additional storage and RAM will maximize the basic capabilities of your MBP, but you won't be able to make a 2.3ghz machine any faster than it already is.
    SSD
    4. I still feel that your iMac will be faster than your prospective MBP. The only way to dramatically increase the speed would be the installation of a SSD drive (like the lauded OWC series). But they're not cheap.
    I don't want to rain on your parade, but want you to get a more realistic idea of your performance.
    I chose a macbook pro, 17" of cause. I use it for gaming. Yes a iMac is better for gaming. But, it's nice to be able to move around. Set up a man cave in the lounge 1 week, or in the bedroom, the next. But you fork out a lot more dosh for that luxury. And yes, not as much power as Poikkeus has said.

  • I am facing problem regarding graphical user interface. I am using text box for editing files. I want to show the line numbers and graphical breakpoint​s along with text box. Can anybody help me in this? Thanks.

    I am facing problem regarding graphical user interface. I am using text box for editing files. I want to show the line numbers and graphical breakpoints along with text box. Can anybody help me in this? Thanks.

    Thanks for you reply.
    But actually I don't want to show the \ (backslashes) to the user in my text box. 
    Ok let me elaborate this problem little more. 
    I want to show my text box as it is in normal editors e.g. In Matlab editor. There is a text box and on left side the gray bar shows the line numbers corresponding to the text. Further more i want that the user should be able to click on any line number to mark specific line as breakpoint (red circle or any graphical indication for mark). 
    Regards,
    Waqas Ahmad

  • How much is  a graphics card for 2011 macbook pro early edition?

    How much is a graphic card for a 2011 MacBook Pro?

    There is an Apple Recall for this year:
    https://www.apple.com/support/macbookpro-videoissues/
    These are the models involved:
    Affected Models
    MacBook Pro (15-inch Early 2011)
    MacBook Pro (15-inch, Late 2011)
    MacBook Pro (Retina, 15-inch, Mid 2012)
    MacBook Pro (17-inch Early 2011)
    MacBook Pro (17-inch Late 2011)
    MacBook Pro (Retina, 15 inch, Early 2013)
    Is yours one of these? Run your serial number on that site.
    IIt will make it easier to help you w/ your problem to know know more information about your computer; size, exact year built, RAM installed and OS you're running. Any history prior to your incident would also be helpful.

  • [svn:fx-trunk] 5152: First pass of bug fixes for the Spark skins for Halo components.

    Revision: 5152
    Author: [email protected]
    Date: 2009-03-03 13:18:45 -0800 (Tue, 03 Mar 2009)
    Log Message:
    First pass of bug fixes for the Spark skins for Halo components.
    Bugs:
    SDK-19963 - themeColor should not affect rollOverColor or selectionColor in flex 4
    SDK-19654 - Spark skin for the Halo ComboBox dropdown needs a drop shadow
    SDK-19637 - Halo HScrollBar/VScrollBar controls dont render correctly when specifying includeIn states
    SDK-19634 - Halo ProgressBar default size is very different when using Halo vs Gumbo theme
    SDK-19626 - Flicker when toggling enabled property on Halo TabBar control with Gumbo skin
    SDK-19556 - selected Halo CheckBox and RadioButton icons briefly flicker when you roll over them
    SDK-19658 - Halo ComboBox with Gumbo skin has an odd flicker
    Doc/QA Notes: The fix for SDK-19963 includes a compatibility-version check. When compatibility-version < 4, setting themeColor implicitly sets rollOverColor and selectionColor, if they have not been set. When compatibility-version >= 4, you must explicitly set rollOverColor and selectionColor, even when using the Halo theme.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19963
    http://bugs.adobe.com/jira/browse/SDK-19654
    http://bugs.adobe.com/jira/browse/SDK-19637
    http://bugs.adobe.com/jira/browse/SDK-19634
    http://bugs.adobe.com/jira/browse/SDK-19626
    http://bugs.adobe.com/jira/browse/SDK-19556
    http://bugs.adobe.com/jira/browse/SDK-19658
    http://bugs.adobe.com/jira/browse/SDK-19963
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxApplication.as
    flex/sdk/trunk/frameworks/projects/framework/defaults.css
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Button.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ComboBase.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RectangularDropShadow.as
    flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/BorderSkin.mxml
    flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/ProgressBarTrackSkin.mxm l

  • Graphics Card for Lightroom and also CS2 and Maybe CS3

    Hi. I am still using a PC I build about 3 years ago with a ASUS P4PE mother board. It has been very good but I am wondering if it is best to now change to a later PC or, upgrade.
    I have used 1GB Ram and just got another IGB to install, but my real concern is with the Graphics Card. At present I have a Matrox Millenium G550 which as I recall has just 32MB Ram. At the time this was considered one of the best, if not the best card for 2D Images. However, I now see 256 and 512 Ram cards as norm, but they always refer to being cards for games. I never have and never will wish to play any games on a PC. So advice needed please, what is considered the best Graphics Card for Photoshop CS2 and now Lightroom?
    Incidently my Processor is just a P4 2.66 this has served me well so far, but!! I maywell get another PC but for now I feel I just want to try the best upgrades I can.
    This is my first post here and look forward to your answers and advice.
    All the best, Ron dps.

    The high-powered graphic processors being sold today are fantastic for games but offer zero improvement for digital photo editing. What you have is more than enough. Increasing your SDRAM to 2GB will help the most.
    Dave Huss

  • Is nVidia Geforce GT640 good graphics card for PrE10 despite low memory bandwidth?

    Can anybody confirm that the nVidia Geforce GT640 is a reasonable graphics card for Premiere Elements 10 and Photoshop Elements 10?
    The person who assembled my Core i7 3770K desktop with 16Gb of RAM at 1600mHz installed the nVidia GT640 card with 2Gb of DDR3 memory. He said that this was a good (fairly low cost) card for video editing because it has 384 CUDA cores - very helpful in video editing. I am pretty ignorant about graphics cards, but like the low power usage, 65 watts, and reputed cool operating temperatures. I have since read that DDR5 memory would have been much faster because of greater memory bandwidth - say 80-90Gb per second compared with 28.5Gb per second for the DDR3 memory on the GT640 card. I was after economical power use. DDR5 cards use 110 watts upwards and run much hotter than DDR 3 cards, all other things being equal. The really fast cards require special power units and cooling.
    Does anybody know whether limited memory bandwidth is important in video editing? Is speed much more critical in gaming than in video editing? Are other attributes such as 384 CUDA cores, nvenc syncing, dedicated encodment, 28nm Kepler architecture, 2Gb memory frame buffer, 1.3 billion transistors, plenty of texture units -  more important than memory bandwidth in video editing? Does bandwidth limited by DDR3 memory affect quality of image?
    I read that the GT640 would be much faster (producing better image quality?) than the HD4000 integrated Intel graphics of the Core i7 Ivy Bridge processor. Is this so?
    Windows 7 Home Premium 64 bit and all programs are installed on a 120Gb OCZ Agility 3 solid state drive. My data drive is a 1Tb Seagate SATA 3 at 7200 RPM. I have a beautiful 21 inch ASUS vs228n LED monitor and LG blu-ray burner.
    I did lots of editing with PrE 3 with a Dell 3.06 gHz hyperthreading desktop and Win XP. The output and even the preview monitoring was clear and stable. I am still capturing standard definition mini dv tape by firewire from a 3MOS Panasonic handycam, but plan to upgrade to HD 3MOS with flash memory. I make the preview monitor really small - about 7cm wide - in PR10, because the quality of the preview picture is much poorer than the quality that I experienced with the Premiere Elements 3 program with Win XP. Is this just an indication of memory-saving in PrE 10 previews? I expect output to be much superior, although still mpeg2-DVD quality until I upgrade my camera. I have set rendering on maximum bitrate.
    Anyway, despite these reservations with preview quality, the GT640 seems to be performing fine. Picture quality in Photoshop, online and elsewhere on my computer is excellent.
    I updated the nVidia display driver only yesterday to version 306.23.
    Nearly all graphics cards forums are about gaming. I hope to see more forums about graphics in editing here.
    What do you think of the 2Gb nVidia GT640 for editing with PrE 10 and Photoshop Elements 10? What would you say about picture quality in the PrE 10 monitor versus quality of output? Was picture quality in the PrE 3 monitor sharper and more stable, as I imagine?
    Regards, Phil

    Sheltie,
    Thank you for the kind words. We all work very hard to help others with video-editing. Some of us also show up on other Adobe forums, depending on the products that we use most often.
    Besides helping out, I also find that I learn something new every day, even about programs that I have used for decades. Heck, I just learned something new about PrE vs PrPro (my main NLE program), when I went to try and help a user. I probably actually use PrE more to test my theories, or to replicate a user's problem, than I do to actually edit my videos. Still, when applicable, I do real work in the program.
    With about a dozen "regulars" here, if one of us is not around, several more usually are. Personally, I do not understand how Steve Grisetti and John T. can dedicate so very much time here. Steve is a noted author of books on PrE, PSE, Sony DVD Architect, and others, plus helps run a video/photography Web site, Muvipix.com, that is very active, and has so very much to offer. John T. is always under the watchful eye of The JobJarQueen, and gets dragged, kicking and screaming, out into the yard, or up on his roof, so can be gone for a bit.
    Neale usually beats us all, since he's in the UK, and normally answers all the questions, that come in too late for us to see. He is also a PrE power-user, so beats me hands down.
    I travel a great deal, but no one ever misses me. Was supposed to do a trip to Sydney last Dec., but had to cancel. Have not gotten details on the reschedule of that trip, but it would have been my first jaunt south of the Equator. Gotta' make that happen.
    Good luck, and happy editing,
    Hunt

  • How to add new skins for Adobe Flash Player in DW CS4?

    Hi everyone, I'm trying to insert a FLV file into my webpage using Insert | Media | FLV...  from the top menu bar in dreamweaver cs4.
    When the "Insert FLV" window opens up, I see a drop down list of different skins (clear skin, corona skin and halo skin) for the flash player, but none of these skins has the Full Screen button on it. How can i add a new skin to this drop down list that contains the full screen toggle?
    Also, I'm using the Design view to build my website as I'm not very familiar with any kind of code.
    Thanks in advance for your answers.

    How can i add a new skin to this drop down list that contains the full screen toggle?
    You can't.  You need a height and width for your player to appear correctly on the html page.
    Also, I'm using the Design view to build my website as I'm not very familiar with any kind of code.
    That's a real shame.  You're severely limited working only in Design View.  Kind of like working with a pencil between your teeth and both hands tied behind your back.  Web design is all about code. While you're learning, you should at least keep split screen open so you can see the code DW writes.
    Start your code lessons here:
    FREE HTML & CSS Tutorials  - http://w3schools.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/

  • Passive graphics card for 2-monitor setup

    I am looking for a graphics card for use with 2 monitors in a dual monitor configuration that has:
    Passive cooling
    1 x DVI port
    1 x DisplayPort
    I'm aware that CS6 can  make use of some of the more advanced graphics card features, such as Open CL, but I don't understand the technicalities of this, nor what this implies when choosing a card.  I will not be doing any video-editing, video playback or gaming. 
    My questions are:
    Would a card such as the Sapphire Radeon HD 6670 Ultimate provide full support for CS6, without being overkill? (http://www.sapphiretech.com/presentation/product/?cid=1&gid=3&sgid=1088&pid=1240&psn=&lid= 1&leg=0)  -  I thought that the "low active power consumption and Dynamic Power Management" features seem a good idea, since the card will never be used very intensively.
    Or would the much cheaper Zotac Synergy Edition GeForce GT 210 be just as good for my needs. (http://www.sapphiretech.com/presentation/product/?cid=1&gid=3&sgid=1088&pid=1240&psn=&lid= 1&leg=0)
    Or are there other types of cards that would be more appropriate?
    And finally, can you connect a single-link DVI device to a dual-link DVI port?  (If so, I would like the DVI port to be dual-link, for future compatibility.  If not, it will need to  be single-link, for my current hardware.)

    For the benefit of anyone searching on this topic in the future, a posting of this question on Silent PC Review (http://www.silentpcreview.com/forums/viewtopic.php?f=19&t=65413) yielded some extremely helpful responses.

Maybe you are looking for

  • Switching to Apple

    Hi, My wife and I are considering switching to a Mac (having lived with Windows and Linux). My impression is that a Mac has everything a consumer needs out of the box, the hardware and software are developed by the same company and the various softwa

  • Release 12 and new SOB

    We are on 11.5.10.2 (with 10gR2 db) with one set of books having 5 segments in COA. We have a utility department (Water and Power) and they will like to make changes to existing COA to meet FERC accounting requirement. This could involve adding two m

  • Error in  pdk url services when using a proxy server

    Hi All, i created a pdk url services portlet, which connects to a google site. i got a sucessful provider test page..when i tried to add it as a portlet it gives me the following error , Portlet Information could not be obtained. (WWC-44334) An unexp

  • When I restart my computer...

    I get a flashing symbol. It flashes a caution sign and the apple logo but I didn't do anything to prevoke it. What is going on??

  • 3rsm on x86?

    The remote shared memory API documented in 3rsm on Solaris 9 and 10 looks like an almost perfect solution for a difficult resiliency problem I need to solve. But too bad: everything I can find at sun.com shows that the SCI card sun offers (X1074A) to