Has Anyone Used Dell's New 23" SP2309W LCD Flat Panel?

Good afternoon,
I'm looking to buy a new external monitor for my soon to be purchased MacBook Pro 4,1 (Early 2008) model. I have also asked if anyone had any user info. about an Acer monitor, but no one replied. I'm serious about purchasing this new monitor by Dell, as it's features are quite amazing for its price. However, since it is fairly new there isn't much feedback on it, and I kinda want to know what experiences others have had with it. Thank you.
AMMOCAN

Good morning everyone,
I have had the pleasure to use this monitor since I got it on Wednesday, and all I can say is WOW! This monitor is an absolute dream. Setting it up was a real breeze and my MBP recognized it right away without installing the drivers that came with the included disk. The touch sensitive power and menu sensors are awesome and are easy to use. The noise created by touching them annoyed me, but I was able to quickly go into the menu and turn it off. The adjusting features are very effective. I have used this monitor both as a split screen and as my main screen with no issues. I have played movies and games on it, and using the preset screen modes everything looked very good. I also used it to browse the internet and to do some graphic work with no issues. I still need to check out the camera, mic, and audio connections, but like I said before I didn't buy this monitor for those features. The only negative thing I have to say for this amazing monitor right now is that it is really inconvenient that in order to use the supplied USB connections on this monitor you have to connect the monitor to your computer with the supplied USB upstream cable. I will give another update no later than next weekend.
AMMOCAN

Similar Messages

  • Has anyone used the Acer X223Wbd 22" Wide LCD Monitor with their MBP?

    Good afternoon,
    I'm currently thinking about purchasing the 22" Wide Acer LCD monitor to hook up to my MBP, so I can have a bigger screen to render graphics and play games on. I was wondering if there is anyone else, who has experience with this product, that can give me their opinion about it. My financial budget is about $200.00, so I need to find the best monitor for my buck. I have read some good reviews on it, but I'm not sure if those individuals had used it with a MBP. I would appreciate any useful information that anyone can give me. Thank you.
    AMMOCAN

    Thanks J, that's a nice find. I've tried it and it seems to be working seamlessly. As you said, I cannot confirm any multi-touch support and the price that they are asking is certainly not in the private end-user range. Fortunately, according to the terms of use for the evaluation, you only need to calibrate after every 100 touches to keep the driver working indefinitely.
    Terms of Use:
    TERMS OF USAGE
    This software is supplied for evaluation and test purposes only. For use in production systems, driver licenses are required. Please note that click emulation will cease after 100 touches and a calibration or reboot is needed to gain another 100 touches.
    This would appear to be a nice work around until acer decides to distribute a Mac driver or someone develops a cheaper alternative.

  • Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Hi 4judy,
    If you are looking to use an external display with your MacBook Pro, you may find the following articles helpful:
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    http://support.apple.com/kb/ht3382
    OS X: How to use multiple displays with your Mac in Mountain Lion and earlier
    http://support.apple.com/kb/ht5019
    Regards,
    - Brenden

  • Has anyone used Migration Assistant to move services from one system running Server to a new system?

    So, I've purchased a Mac mini to replace my aging Mid 2009 mini on which I've been running Mavericks Server.  In trying to answer the question of how best to move services from the old machine to the new, I've stumbled into the fact that Migration Assistant can apparently migrate not just user data for workstations and laptops, but also service data for servers.  The problem is there isn't much detail in the docs about how good a job it does when going from one machine to another without changing OS releases.  There's a very detailed document in the KB about going from older versions of Server to new (OS X Server: Upgrade and migration from Lion Server or Snow Leopard Server) and a general doc on migrating from another Mac under Mavericks (OS X: How to migrate data from another Mac using Mavericks) but that has no details about Server.
    Has anyone used Migration Assistant to move services from one system running Server to a new system?  Are there any details that are particularly important to get right?  Are there things that require manual steps after Migration Assistant is done?
    There are other ways I could tackle the problem, of course.  I could simply swap drives between the systems, but the new system has two drives that are bigger, faster, and I intend to mirror them.  That would complicate such an approach.  I'd really like to keep the conversation constrained to a discussion of Migration Assistant as the primary method.

    yes. I migrated a server frm lion to mavericks following these notes a while back:
    OS X Server: Upgrade and migration from Mountain Lion
    i do not recall having any problems with it.

  • Has anyone used the new 5K retina iMac with Lightroom

    Has anyone  used Lightroom with the new 5K Imac. If so any problems ?

    Just bought one - arrives next week. From what i can tell it's should be the fastest mac for lightroom. Processor speed is most vital. Doesn't really use all the mac pro multiple cores as I understand 4 is plenty (correct me pls?) and 16Gb ram should hopefully do it. Getting a raid thunderbolt 2 drive for image storage which will daisy chain with my eizo monitor. Choose 3tb internal fusion as I understand full SSD doesn't really help too much. 2GB graphics plenty unless you're doing video maybe?.
    Only issue is I have a series of archive 3TB firewire 800 drives which are daisy chained. the questions is how will these work with an adapter but this remains to be seen....

  • HT204387 Has anyone used their ip4 or higher with the text messaging sync system in the new ford cars it is call map

    Has anyone used their ip4 or higher with the text messaging sync system in the new ford cars it is call map

    Send this to:
    newsgroups.bea.com / security-group.

  • Has anyone used JAAS with WebLogic?

    Has anyone used JAAS with Weblogic? I was looking at their example, and I have a bunch of questions about it. Here goes:
    Basically the problem is this: the plug-in LoginModule model of JAAS used in WebLogic (with EJB Servers) seems to allow clients to falsely authenticate.
    Let me give you a little background on what brought me to this. You can find the WebLogic JAAS example (to which I refer below) in the pdf: http://e-docs.bea.com/wls/docs61/pdf/security.pdf . (I believe you want pages 64-74) WebLogic, I believe goes about this all wrong. They allow the client to use their own LoginModules, as well as CallBackHandlers. This is dangerous, as it allows them to get a reference (in the module) to the LoginContext's Subject and authenticate themselves (i.e. associate a Principal with the subject). As we know from JAAS, the way AccessController checks permissions is by looking at the Principal in the Subject and seeing if that Principal is granted the permission in the "policy" file (or by checking with the Policy class). What it does NOT do, is see if that Subject
    has the right to hold that Principal. Rather, it assumes the Subject is authenticated.
    So a user who is allowed to use their own Module (as WebLogic's example shows) could do something like:
    //THEIR LOGIN MODULE (SOME CODE CUT-OUT FOR BREVITY)
    public class BasicModule implements LoginModule
    private NameCallback strName;
    private PasswordCallback strPass;
    private CallbackHandler myCB;
    private Subject subj;
             //INITIALIZE THIS MODULE
               public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
                      try
                           //SET SUBJECT
                             subj = subject;  //NOTE: THIS GIVES YOU REFERENCE
    TO LOGIN CONTEXT'S SUBJECT
                                                     // AND ALLOWS YOU TO PASS
    IT BACK TO THE LOGIN CONTEXT
                           //SET CALLBACKHANDLERS
                             strName = new NameCallback("Your Name: ");
                             strPass = new PasswordCallback("Password:", false);
                             Callback[] cb = { strName, strPass };
                           //HANDLE THE CALLBACKS
                             callbackHandler.handle(cb);
                      } catch (Exception e) { System.out.println(e); }
         //LOG THE USER IN
           public boolean login() throws LoginException
              //TEST TO SEE IF SUBJECT HOLDS ANYTHING YET
              System.out.println( "PRIOR TO AUTHENTICATION, SUBJECT HOLDS: " +
    subj.getPrincipals().size() + " Principals");
              //SUBJECT AUTHENTICATED - BECAUSE SUBJECT NOW HOLDS THE PRINCIPAL
               MyPrincipal m = new MyPrincipal("Admin");
               subj.getPrincipals().add(m);
               return true;
             public boolean commit() throws LoginException
                   return true;
        }(Sorry for all that code)
    I tested the above code, and it fully associates the Subject (and its principal) with the LoginContext. So my question is, where in the process (and code) can we put the LoginContext and Modules so that a client cannot
    do this? With the above example, there is no Security. (a call to: myLoginContext.getSubject().doAs(...) will work)
    I think the key here is to understand JAAS's plug-in security model to mean:
    (Below are my words)
    The point of JAAS is to allow an application to use different ways of authenticating without changing the application's code, but NOT to allow the user to authenticate however they want.
    In WebLogic's example, they unfortunately seem to have used the latter understanding, i.e. "allow the user to authenticate however they want."
    That, as I think I've shown, is not security. So how do we solve this? We need to put JAAS on the server side (with no direct JAAS client-side), and that includes the LoginModules as well as LoginContext. So for an EJB Server this means that the same internal permission
    checking code can be used regardless of whether a client connects through
    RMI/RMI-IIOP/JEREMIE (etc). It does NOT mean that the client gets to choose
    how they authenticate (except by choosing YOUR set ways).
    Before we even deal with a serialized subject, we need to see how JAAS can
    even be used on the back-end of an RMI (RMI-IIOP/JEREMIE) application.
    I think what needs to be done, is the client needs to have the stubs for our
    LoginModule, LoginContext, CallBackHandler, CallBacks. Then they can put
    their info into those, and everything is handled server-side. So they may
    not even need to send a Subject across anyways (but they may want to as
    well).
    Please let me know if anyone sees this problem too, or if I am just completely
    off track with this one. I think figuring out how to do JAAS as though
    everything were local, and then putting RMI (or whatever) on top is the
    first thing to tackle.

    Send this to:
    newsgroups.bea.com / security-group.

  • Has anyone used Aperture 2.0 with 8800GT?

    Has anyone used Aperture 2.0 with the new 8800GT? I'm about to order a new Mac Pro and wonder if Aperture will get a speed boost with the 8800GT over the HD 2600XT. I've read many times that Aperture is very GPU dependent, but then I've also read, on Barefeats.com for example, that the graphics card really doesn't do that much of a difference after all.
    For me, on my dual 2.0 G5 with 4.5GB and a X800XT, what's been most annoying with Aperture 1.5 has been the slow load times for raw images (15-20MB). But now with the quick preview mode in Aperture 2.0, that really isn't an issue any more.
    Is the 8800GT worth waiting for, or should I just get the Mac Pro now with the HD 2600XT?

    Hi Don
    I'm using Aperture 2.0 with the 8800GT. My system is the new MacPro 8 core 2.8GH with 10GB RAM. I'm shooting Nikon D3 lossless compressed RAW files. Approximately 12-14MB each.
    I do not need to use the quick preview mode. Images open instantaneously,either fit to screen or 100%. All the image adjustments are shown with no time lag. My D2X uncompressed raw files,19MB, display in approximately one second with quick preview turned off.
    I'm no MAC hardware expert so I don't know how much the speed is the result of the 8800GT but I'm just one happy camper.
    Hope this helps
    John Blake

  • Has anyone used Thunderbolt or USB 3.0?

    In the not too distant future I am intending to upgrade from my 2008 24"  2.8GHz iMac.
    The new models appear to have gone down the Thunderbolt route which appears to be not very popular with HDs being few and far between and very expensive.
    USB 3.0 whilst theoretically only half the speed seems to be taking off and reasonably cheap, and appears to be more universally adopted.
    Could Apple have backed the wrong horse on this occasion?
    Sorry, I was just thinking aloud, definitely not speculating.
    So has anyone used Thunderbolt and got anything good or bad to say about it?

    Not personally:
    The german computer-magazine c't tested the Promise Pegasus R6 Thunderbolt and found it speedwise way ahead of USB 3.0 and eSATA.
    As a RAID-Level 0 with 6 x Hitachi HDS721010CLA332 (7.200 U/min, 1TB each) and MBP 13" 2011 OSX 10.6.8:
    Write - 693 MByte/s
    Read - 721 MByte/s
    Read AND Write - 323 MByte/s
    Time Machine -capable and OS X Bootable.
    0.8 Sone when active
    61.6 W active - 48 W when not used.
    Sadly the article is not avaibale other than Printed.
    Stefan

  • I just saw a message that iWeb has been discontinued by Apple.  It suggested EverWeb.  Has anyone used this or do you have aother recommendation?

    I just saw a message that iWeb has been discontinued by Apple.  It suggested changing to EverWeb.  Has anyone used this or do you have another recommendation?

    Hi
    I have now used Everweb to transfer a website from iWeb & am now working on transferring a second website.
    I cannot recommend Everweb highly enough. I am an amateur, so iWeb was the easy option for me. Everweb is just as easy to use and very similar to iWeb. New features are being added every few days.
    I am extremely impressed by the excellent and prompt service from both the forum and support. All my questions have been answered (& there have been many of them!)
    Everweb is complimented by an excellent site Everweb codebox which has developed more widgets and codes to add to Everweb. Roddy from Everweb codebox has been invaluable by answering questions on the forum & generally complimenting the Everweb team.
    I have purchased the Everweb program & Hosting. This gives my 1 click updating and works seamlessly. The price is competitive and the support exemplary.
    All in all, I am delighted with Everweb, excellent program & excellent support!! I would not hesitate in recommending it to anyone.
    In answer to your question...buy it!!!!
    Lynn

  • Has anyone used the appscript modual for python rather than streight AS?

    I just discovered appscript and so far I like what I see. has anyone used it?
    Does it just wrap around actual applescript commands which it then sends to osascript with a system call or does it use the message system directly? Is there anything that it has not yet implemented that might cause problems?
    To me it seems to be a perfect solution to the clutter that AS seems to be... at least from someone coming from more traditional languages.

    In startMovie, you need to register the xtra
    on startMovie
    axRegister(serial code here)
    end
    Then, on your Record Button, something like this:
    on mouseUp me
    --start recording session - using 400k as maximum here
    errOpen=axOpenRecorder(400000)
    --see if there is an error
    put errOpen
    --save the new audio as a file
    errRecord=axRecordSoundToFile("soundName","c:\path\to\soundfile.wav")
    --see if there is an error
    put errRecord
    end
    then make sure you close the recorder in stopMovie
    on stopMovie
    axCloseRecorder()
    end
    You can also make a Stop Recording button that has code like
    this:
    on mouseUp me
    errStop=axStopRecording()
    put errStop
    end

  • Has Anyone Used the WD My Book External Drives for Time Machine?

    I'm thinking of getting the Western Digitial 1 or 2 TB My Book (Pro Edition 2 or Studio Edition) External Drives for use with 2 MacPros. Has anyone used these and could I use them with Time Machine? Would I have to reformat them for Time Machine?
    Thanks!
    Ashley

    You may, and probably want to format them, even if not TM use, I would anyway. Not everyone is happy with MyBook Pro and TM.
    I buy bare FW devices and add disk drive of choice, or just use OWC
    http://www.macsales.com/firewire and works well.
    FW800 is also better on the new Mac Pro
    http://www.barefeats.com

  • Has anyone used the Essbase XTD Spreadsheet Services?

    Is the Essbase Spreadsheet Services an additional cost above and beyond the spreadsheet add-in?Has anyone used this product in addition to or in place of the existing spreadsheet add-in?What have you found are the added benefits of this product? Any lost functionality or issues with using this over the current spreadsheet add-in.If we upgrade to Essbase 6.5 is this the 'new' spreadsheet add-in or is it optional?Thanks!Lisa

    To try to answer the questions in order:Q: Is the Essbase Spreadsheet Services an additional cost above and beyond the spreadsheet add-in? A: I believe ESS is licensed separately - I don't know if this has or will change in the future, so yes it does cost above and beyond Essbase.Q: Has anyone used this product in addition to or in place of the existing spreadsheet add-in? A: I used it during the beta, and I work with it from time to time, but I have not implemented it in production anywhere as of yet.Q:What have you found are the added benefits of this product? Any lost functionality or issues with using this over the current spreadsheet add-in. A: The main benefits are that you can now connect to your Essbase servers (via Essbase Enterprise Services) over HTTP, which means you don't need TCP connectivity. You could have users around the world and as long as they can see the web server running the service, they can connect.Another benefit is you don't need to install the Essbase runtime on the user's PC. The "add in" can be a CAB file that self installs when the user hits a page you set up. A nice bonus in a large widely dispersed user community.As far as functionality goes, I believe the will be parallel (the beta did not have EIS drill through). The major downer is performance - it is slower than the normal add-in with larger reports.Q: If we upgrade to Essbase 6.5 is this the 'new' spreadsheet add-in or is it optional? A: No - the normal add-in is still the default. ESS requires additional software/configurations (particulary EES, Java App Server) to be used.Regards,Jade-----------------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected]

  • Has anyone used switch control and siri at the same time?

    Has anyone used accessibility switch control and siri at the same time?

    Using Xmarks and Sync simultaneously will create a mess.
    You can create a new profile, import the bookmarks from your main profile, and set up Sync for the new profile.
    The flip side is, bookmarks from your main profile would not get synced with your new profile.
    Alternatively, Xmarks is also available for Android.
    https://play.google.com/store/apps/details?id=com.xmarks.android&hl=en

  • Has anyone used an app with the Maverick software to burn iPhoto slideshows to DVD disks that will play on any DVD player?

    Has anyone used an app with the new Maverick software to burn iphoto slide shows to DVDs that will play on a standard DVD player?  This probably cannot be a demo app in that the amout of photos on the slideshows is large.  
    Thank you,
    Jim

    Export the slideshow from iPhoto, that makes a movie of it.
    Do you want to use this DVD in a domestic DVD player? If so, then the disk will have to be 'authored' to make it the correct form for that. If you have iDVD then that's the app you use. However, iDVD is no longer developed or distributed by Apple. You may be able to get it on an old iLIfe install disk.
    Other options:
    Burn: http://macupdate.com/app/mac/21992/burn
    Toast: http://macupdate.com/app/mac/6351/toast-titanium
    But there are lots of others too. Search on the App Store or MacUpdate

Maybe you are looking for

  • My Mac won't connect to the wireless internet

    My MacBook won't connect to the internet. Yet my phone and iPad will. I have tried turing the laptop on and off. Shutting the airport on and off and turning the Bluetooth on and off. And it still won't connect.

  • Disk Utility repairs again and again- no change and Firefox on "go slow"

    Hey folks, Two issues: 1.  My Firefox (running newest Flash Player, updated last week as per Firefox's request) 6.0.2 has this awful habit of running slow, ie stalling with the beach-ball every ten minutes of use or so, for about a minute or two befo

  • How to use Recycle bin in SQL

    Hi All, I am using oracle 10g sql plus. It is not displaying the details of dropped tables in recyclebin. And also when i give flashback it is showing that object not in recyclebin.. see the below example... SQL> CREATE TABLE DUM(NAME VARCHAR2(2)); T

  • Bugs Premiere Pro - A qui le faire remonter ?

    Bonjour, je suis monteur permanent dans une société de production audiovisuelle spécialisée dans la captation de concert. Nous sommes passés il y a peu à Première. Le soft est vraiment bien fait mais j'ai repéré quelques bugs et certaines fonctionnal

  • 3g restarts every few days without me saying so

    Hi, RE: 3G 20gig Ipod Every so often, I switch my Ipod on to use it to find that it has restarted itself and I have to choose the language and set up all my menus etc again!! This is really frustrating and appears to happen randomly for no reason. Ca