What is the proper resolution to use with bootcamp and Windows 7 on a Macbook Pro Retina?

Hi All,
Let me start by saying I have read numerous articles and blog posts about choosing the correct resolution to use when running Windows 7 via Bootcamp on a MacBook Pro Retina (15").  I have not found the "silver bullet" (correct resolution).  My eyes are sensitive to displays that are running in non-native resolutions (scaling). 
When running the display in native resolution  (2880x1800) everything looks great, except that icons and text are way too small to read.  I have played with the zoom settings (150%, etc.).
When using any scaled resolutions, the display doesn't look as crisp and I get eye fatigue.  I have also tried Windows 8, with the same results (no surprise).
I would love to use this Macbook to run Windows 7 because the hardware is great, but it looks like I may have to switch back to Dell/Lenovo/HP. 
Is there a proper or "best practice" resolution to run at in this scenario?  I want to give it one last try before putting the laptop away...
Thanks for any help!
Andrew

While I've never seen retina display, if you have not tried Hi-Contrast in Windows, you might find settings with it that are comforatable.
This is set with desktop rightclick->Personalize. You can vary desktop icon size in the View option above Personalize.
You can change most of what you see in Windows foreground/background colours & text with high contrast settings.
Also, text size in Windows browsers is variable with the Control an + and - key combo.
If the display you use is small maybe an external 24" or 27" monitor, if possible, would alleviate problem.
The attached pics are expadable by double click.

Similar Messages

  • Can someone suggest an affordable external hard drive for use with FCPX and video editing on my Macbook Pro Retina

    I have a Macbook Pro Retina from 2012 and I only got the 250GB hard drive.  I'm getting ready to purchase a Panosonic HC-X920 to use with Final Cut Pro X already installed on my laptop.  Since I know the file sizes are going to be so big, can anyone suggest an affordable external drive fast enough to keep up with editing the video?  I'm not a pro and use it for family and personal projects. 
    I prefer some thunderbolt options since I haven't had a chance to use the inputs since I got my macbook pro. I just don't know what is necessarily too little or too big and too cheap and too expensive for my needs.  Thank you.  

    OWC is a Mac specialist and a very trustworthy vendor.  I have dealt with them and their technical stall on many occasions.  Hence you may look at what they offer and be assured that they will stand behind what they sell:
    http://eshop.macsales.com/shop/Thunderbolt/
    I suspect that for your needs, a 1 TB drive is going to be the minimum.
    Ciao.

  • What is the best method for a quick disconnect from time capsule on a Macbook Pro Retina?

    Just bought a Macbook Pro Retina and want to attach Time Capsule portable disk. Do I need to go to Finder everytime I want to take my notebook and eject the harddrive?

    Quote from Bob Timmons:
    "Normally, the TC icon will mount on the desktop during a backup and un-mount at the conclusion of the backup. If the TC icon still happens to be on the deskop, then you would want to right-click on the icon and choose Eject, or simply drag the icon to the Trash to do the same thing."

  • What is the proper way to use Siri dictation with punctuation, on iPad with Retina Display?

    What is the proper way to use Siri dictation with punctuation, on iPad with Retina Display?
    Thank you!

    From the iPad User Manual:
    Also:
    no space on ... no space off—to run a series of words together
    smiley—to insert :-)
    frowny—to insert :-(
    winky—to insert ;-)

  • What is the proper way to deal with cascading triggers in AcroForms?

    (this has already been posted in the Scripting forum. Due to the lack of response, I am coming here to the Land of C/C++ Developers)
    What is the proper way to deal with cascading triggers in AcroForms?
    My question refers to the forms in which there is a binary question such as:
    "Are you interested in travel?"
    When the user clicks "Yes", there are further questions whose interactive fields are dot.hidden (or "!"), depending on the answer.
    So far, I can handle the 1-level cases fine, but my doubt is how to implement nested dependencies. For the sake of simplicity, I would prefer to define the cause-effect relationship once ("Every time the 'Interested in Travel' box is checked, the field 'International or Domestic' should be visible") and send some sort of message/trigger downstream.
    I would like the right things to happen (cascading triggers included) when the "Clear Form" menu command is selected.
    Are those desirable features available in JavaScript (the particular JS used by the traditional AcroForms)?
    Maybe I should look into C/C++ programming?
    TIA,
    -Ramon

    I guess my problem is that I have some basic college experience in digital circuit design, and would like the forms to be programmed and behave in the same fashion as digital logic.
    The "Clear Form" menu item, of course, would be equivalent to the  reset button.
    Perhaps it is possible to hook my code onto the "Clear Form" menu item?
    -Ramon

  • What is the proper way to use the write method?

    What is the proper way to use the OutputStreams write method? I know the flush() method is automatically called after the write but i cant seem to get any output
    to a file. The char array contains characters and upon completion of the for loop the contents of the array is printed out, so there is actually data in the array. But write dosnt seem to do squat no matter what i seem to do. Any suggestions?
    import java.io.*;
    public class X{
    public static void main(String[] args){
    try{      
    FileReader fis = new FileReader("C:\\Java\\Test.txt"); //read chars
    FileWriter fw = new FileWriter("C:\\Java\\Test1.txt"); //read chars
    File f = new File("C:\\Java\\Test.txt");
    char[] charsRead = new char[(int)f.length()];
    while(true){
    int i = fis.read(charsRead);
    if(i == -1) break;
    // fw.write(charsRead); this wont work
    // but there is infact chars in the char Array?
    for(int i = 0; i < charsRead.length -1 ; ++i){
    System.out.print(charRead);
    }catch(Exception e){System.err.println(e);}

    Sorry to have to tell you this guys but all of the above are broken.
    First of all... you should all take a good look at what the read() method actually does.
    http://java.sun.com/j2se/1.3/docs/api/java/io/InputStream.html#read(byte[], int, int)
    Pay special attension to this paragraph:
    Reads up to len[i] bytes of data from the input stream into an array of bytes. An attempt is made to read as many as len[i] bytes, but a smaller number may be read, possibly zero. The number of bytes actually read is returned as an integer.
    In other words... when you use read() and you request say 1024 bytes, you are not guaranteed to get that many bytes. You may get less. You may even get none at all.
    Supposing you want to read length bytes from a stream into a byte array, here is how you do it.int bytesRead = 0;
    int readLast = 0;
    byte[] array = new byte[length];
    while(readLast != -1 && bytesRead < length){
      readLast = inputStream.read(array, bytesRead, length - bytesRead);
      if(readLast != -1){
        bytesRead += readLast;
    }And then the matter of write()...
    http://java.sun.com/j2se/1.3/docs/api/java/io/OutputStream.html#write(byte[])
    write(byte[] b) will always attempt to write b.length bytes, no matter how many bytes you actually filled it with. All you C/C++ converts... forget all about null terminated arrays. That doesn't exist here. Even if you only read 2 bytes into a 1024 byte array, write() will output 1024 bytes if you pass that array to it.
    You need to keep track of how many bytes you actually filled the array with and if that number is less than the size of the array you'll need pass this as an argument.
    I'll make another post about this... once and for all.
    /Michael

  • What is the difference between sales order with picking and without picking

    hi friends,
    i would like to know what is the difference between sales order with picking and without picking.
    thanks
    skrishnan

    Hello,
    Picking refers to preparing the right quantity and quality of goods for shipping on schedule as required by the customer.
    Once picking is configured, SAP Sd automatically generates picking lists and picking labels which can be tagged to the relevant goods. SAP can be configured to ensure that picked quantity is confirmed before goods are issued. This can be done using transaction code VSTK. In T-code VSTK, picking confirmations can be set, which ensure that goods picked for delivery are in accordance with picking slips.
    Picking thus helps in monitoring each item using the picking status. Picking is normally done in SAP SD by a shipping clerk.
    Prase

  • I'm sorry, I have to convert the mov file. for use with fce and / or imovie11, better ProRes422 or intermediate codec?

    I'm sorry, I have to convert the mov file. for use with fce and / or imovie11, better ProRes422 or intermediate codec?

    FCE only used AIC for HD.
    Al

  • What are the benefits of Apple TV as compared to streaming video via a MacBook Pro?

    What are the benefits of Apple TV as compared to streaming video via a MacBook Pro?

    Sorry, I don't quite understand your question. Amongst other things that's exactly what the Apple TV does, is streaming video from a computer.

  • HT5266 best resolution in windows 8.1 on macbook pro retina 15 ?

    Hi
    which resolution is the best in windows 8.1 on macbook pro retina 15 ? for software Like SolidWorks or the other? because the recommended resolution is good but some software like SoliWorks not optimized for retina resolution !!!
    Thanks

    Is your rMBP a dual-GPU model, or does it only have the Intel Iris GPU?

  • What is the best programme to use with iwatermark or similiar copyright software

    I want to watermark my photos, I have been told iwatermark is real good but can someone tell me what is the best app to use in conjunction with copyrighting or watermarking sofware.
    Thanks

    It’s really a personal choice. I’ve recently bought a new Dell. Like you I was not interested in the consumer products so I purchased a business spec machine and I’m very happy with it. It’s Dell Precision T3600 with Intel Xeon CPU and Nvidia Quadro 2000 graphics card. Running Windows 7 Pro 64 bit with 8gb RAM. I got 1TB and 500gb drives both 7500 rpm with a 3TB Seagate external HD. I gave SSD a miss until prices drop further. I don’t think the extra speed is that relevant to Photo editing although perhaps more relevant to video rendering. I’m also not gaming or running other apps that might benefit from an SSD. Photoshop Elements is a 32 bit program which runs well on 64 bit systems but cant use more than 1.5 to 2GB of RAM. Premiere Elements has 64 bit support and can therefore take advantage of the extra RAM. At the end of the day it’s your choice.

  • What is the best stylus to use with the iPad Air?

    I'm looking for a stylus to use for the iPad Air to use for sketching and just simple note taking And from the reviews I've read it sounded like the Adonit Jot Pro for 29.99 seemed like a good deal to use for the iPad Air. I'm also a worrywart about if it will harm the screen? So I'm looking for someone's review with their experience using "The Adonit Jot Pro on the iPad Air." Thanks so much For your time and review!

    I've never had a problem with it. I like it a lot for writing. I like the very fine point. I don't know as it's a great stylus for sketching, though. I tend to do most of my sketching in the app Paper with their Pencil stylus.
    When using any stylus, it's good practice to make sure there are no bits of grit on the screen before using. If they should become trapped between the stylus tip and the screen, you could get scratches.

  • What's the proper way to use reusingView in a custom UIPickerView

    Does anyone have an example of the proper way to use the resuingView parameter when implementing pickerView:viewForRow:forComponent:reusingView: in a UIPickerViewDelegate?
    The documentation states that reusingView is "A view object that was previously used for this row, but is now hidden and cached by the picker view."
    and: "If the previously used view (the view parameter) is adequate, return that. If you return a different view, the previously used view is released. The picker view centers the returned view in the rectangle for row."
    I need to create UILabel views so I can right justify things, and I have that working by always returning my copy of the view, but it seems like things could be made more efficient by returning the view passed to me if it's "adequate". So, how do I tell if the view is adequate?
    I've tried something like this:
    // check to see if the view we're given is a UILabel and return that view
    if ([view isMemberOfClass:[UILabel class]])
    v = (UILabel *)view;
    return v;
    else
    ... return a UILabel instance for this row ...
    But the view I'm being passed is never a UILabel instance. That or I'm not using isMemberOfClass correctly.
    Thoughts anyone?

    - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
    iPregnancyAppDelegate *iPregAppDelegate = [[UIApplication sharedApplication] delegate];
    UILabel *pickerLabel = (UILabel *)view;
    // Reuse the label if possible, otherwise create and configure a new one
    if ((pickerLabel == nil) || ([pickerLabel class] != [UILabel class])) { //newlabel
    CGRect frame = CGRectMake(0.0, 0.0, 270, 32.0);
    pickerLabel = [[[UILabel alloc] initWithFrame:frame] autorelease];
    pickerLabel.textAlignment = UITextAlignmentLeft;
    pickerLabel.backgroundColor = [UIColor clearColor];
    pickerLabel.text = @"Put YOUR text here!";
    return pickerLabel;
    Message was edited by: gpmoore

  • What is the best subscription for use in US and Au...

    I regularly travel between US and Australia.  I have postal addresses in both locations and credit cards from both countries.  So I can purchase from either location.
    I want to be able to make calls to US land lines and Mobiles whilst in either countries.  What is the best subscription for me to buy and in which country should I purchase it?
    NOTE: I am not really concerned about calls to Australia.  I don't make that many and so am happy to pay as I go for the Australian calls.

    Probably best option would be Unlimited US&Canada subscription, which you can get if you are located in US.
    It will be displayed here: http://www.skype.com/go/subscriptions
    If you are outside of US or Canada then this subscription is not offered.
    It doesn't matter where you are located when placing calls, but with subscriptions it does matter where you are when purchasing.
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • Webcam on 2008 Mac Pro with Bootcamp and Windows 7.  Cannot get it to work.

    Have windows 7 Professional on my mac, using Bootcamp
    I cannot get any webcam to work.
    So far, I have used ....
    A Logitech QuickCam Vision Pro for Mac. No app can detect it.
    A Logitech C510 Webcam (for PC) No app can detect it.
    An Agama V-2025 Webcam (for both Mac & PC and supposedly no additional drivers needed). No app can detect it.
    I called Logitech and they said as it was too complicated for them to support, (i.e. Windows on a mac with bootcamp) and so they couldn't help.
    Any ideas would be most appreciated.
    Thanks.

    Use bootcamp. I have been a loyal Adobe guy for 12+ years, but now that I have upgraded to mac...Adobe just sucks. I have not been able to finish a project yet do to the shabby CS4 media encoder.

Maybe you are looking for

  • Adding button to report to link to master detail form

    I want to add a button to a report to direct me to a blank master detail form to insert a new record. I have used the following code in the additional PL/SQL code section: htp.formopen('PORTAL30.wwa_app_module.new_instance?p_moduleid=1271601405'); ht

  • SAP ERP 6.0 - Problems displaying numbers in ALV (i.e tx. se16n)

    Hi, We've just upgraded our system from version 46C to version 6.0. As the result of the process we're experiecing a problem when displaying numbers with ALV reports, even with standard transactions. For example, when running the transaction se16n to

  • HT4108 iPad3/AV adapter used to display fullscreen, but not the last few weeks, anyone else encounter this issue?

    I have an iPad3 and the Apple AV adapter.  It was working fine with DS file and other apps that play movies, and used to display the movies full screen to my HDMI TV.  But in the last few weeks, this changed.  Any one else seen this happen?

  • ABAP HR Help!

    Experts, This is the first ever ABAP HR program I am writing for Employee travel records... Please look at the below code and be my critics. Also, The pernrs of infotype p0000 are never matching with thoase of p0017. They are different by 1 number. (

  • How to turn off Info records in MM - Urgent

    Hi,   I work primarily in SRM (We are on SRM 5.0 Extended Classic Mode). Currently we are having issues related to 2-way match POs for a certain vendor (No Goods Receipt). From SRM side the PO has only Invoice required checked but when the same PO is