Screen Resolution issue - BDC Grid

Hi All,
I am facing an issue with BDC for PRMM transaction.
If we look at the PRMM transaction, the very first screen consist of GRid forAction type.
The records in the grid of PRMM transaction is changing as per the screen resolution of User desktop.
Example: In my screen, I am able to see 16 rows in Grid and in user desktop i can see 10 or 20 rows. Because of this the Pagedown option and BDC is not behaving properly.
Please suggest what should be done to resolve it.
Thanks,
Shilpa

Hi Shilpa,
during recording from SHDB, use check box for Default Size.
in call transaction syntax: use
data: wa_opt type ctu_params.
wa_opt-dismode  = w_mode. [N OR A OR E]
  wa_opt-defsize  = c_check.[X]
wa_opt-updmode  = 'A'.
CALL TRANSACTION c_me41 USING i_bdcdata
                          OPTIONS FROM wa_opt [INSTEAD OF HARD CODING MODE]
                          MESSAGES INTO i_msgcoll.
Hope this can solve your problems.
Regards,
Tutun

Similar Messages

  • SCREEN RESOLUTION IN BDC

    HI,
    CAN ANY ONE TELL ABOUT SCREEN RESOLUTION IN BDC.
    REGARDS.
    B.SREENIVASULU.

    Hi,
    Screen resolution means different in the screen display depending on ur system screen resolution.
    suppose ur system resolution is diff and another's system is different then like in Tcode VA01, there will be 3 lineitems and another there will be 5 lineitems ,
    so while doing recording and page down that will bw diff so there will be some problem
    So u have to set the screen resolution as default by using CTU parameters..
    write this code then
    f_option-updmode  = 'S'.
    <b> f_option-defsize  =  'X'.</b> f
    _option-dismode  = 'N'.
    *call transaction 'VA01' using bdcdata options from f_option  messages into bdcerror.
    Hope it helps.
    Regards,
    Sonika

  • How to handle screen resolution in bdc session method.

    hi all,
    how to handle screen resolution in bdc session method.

    Hello,
    Why do need that for? Is it to add rows on a table control??
    If it does, add new rows by using the add button instead of adding into the table control directly to each row.
    Bye
    Gabriel.

  • How to create screen resolution in bdc table control

    hi gurus
    can anyone suggest me
    how to create screen resolution in bdc table control
    thanks&regards
    mark.

    Hi ,
    Using CTU_PARAMS table for screen resolution .
    For this sample code.
    This is for Transation  FB60.
    report ZZFB60
           no standard page heading line-size 255.
    tables t100.
    PARAMETERS : p_file1  like  rlgrap-filename,
                 p_doctyp like  RF05A-BUSCS,
                 p_invdat like  INVFO-BLDAT,
                 p_posdat like  INVFO-BUDAT.
    CONSTANTS  :  C_TRANS_FB60(4) VALUE 'FB60'.
    *Parameter string for runtime of CALL TRANSACTION
    data : l_option type ctu_params,
           l_subrc type sysubrc.
    DATA :  l_mstring(150).
    data      accnt type char17.
    data       : day   type char2,
                 month type char2,
                 year  type char4,
                 date1 type char10,
                 date2 type char10.
    data      :  cnt(2) TYPE n,
                 cnt1 type i,
                 fld(25) TYPE c.
    data : begin of excel occurs 0,
            fieldname(255) type c,
           end of excel.
    DATA:BEGIN OF it_mess OCCURS 0,
             msgtyp(5),
             lms(200),
              msgv1(50),
         END OF it_mess.
    data: begin of t_record occurs 0,
             BUKRS(004),
            ACCNT(017),
            XBLNR(016),
            WRBTR1(016),
            WAERS(005),
            SECCO(004) ,
            SGTXT(050),
            HKONT(010),
            WRBTR2(017),
            MWSKZ(002),
            GSBER(004),
            KOSTL(010),
         end of t_record.
    *Internal Table for Header Data
    DATA :  BEGIN OF t_head OCCURS 0,
            BUKRS(004),      "Company Code
            ACCNT(017),      "Account or Vendor
            XBLNR(016),      "Reference
            WRBTR1(017),     "Amount in document currency
            WAERS(005),      "Currency
            SECCO(004),      "Section Code
            SGTXT(050),      "Text
            END OF t_head.
    *Internal table for Item Data
    DATA :  BEGIN OF t_item OCCURS 0,
            ACCNT(017),      "Account
            HKONT(010),     "GL Account
            WRBTR2(017),    "Line item Amount in document currency
            MWSKZ(002),     "Tax Code
            GSBER(004),     " Business Area
            KOSTL(010),     "Cost centre
            END OF t_item.
    DATA: IT_BDCDATA      LIKE  BDCDATA OCCURS 0 WITH HEADER LINE,
          IT_BDC_MESSAGES LIKE  BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    *include bdcrecx1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      PERFORM  file_selection.
      PERFORM  data_upload.
      PERFORM  table_control.
    start-of-selection.
    l_option-defsize = 'X'.
    l_option-dismode = 'A'.
    l_option-updmode = 'S'.
    day = p_invdat+6(2).
    month = p_invdat+4(2).
    year =  p_invdat+0(4).
    concatenate day month year into date1 SEPARATED BY '.'.
    day = p_posdat+6(2).
    month = p_posdat+4(2).
    year =  p_posdat+0(4).
    concatenate day month year into date2 SEPARATED BY '.'.
    *perform open_group.
    loop at t_head.
    CLEAR    IT_BDCDATA.
    REFRESH  IT_BDCDATA.
    perform bdc_dynpro      using   'SAPLACHD'         '1000'.
    perform bdc_field       using   'BDC_OKCODE'        '=ENTR'.
    perform bdc_field       using   'BKPF-BUKRS'        t_head-bukrs.
    perform bdc_dynpro      using   'SAPMF05A'          '1100'.
    perform bdc_field       using   'BDC_OKCODE'        '/00'.
    perform bdc_field       using   'RF05A-BUSCS'       p_doctyp.
    perform bdc_field       using   'INVFO-ACCNT'       t_head-accnt.
    perform bdc_field       using   'INVFO-BLDAT'       date1.
    perform bdc_field       using   'INVFO-BUDAT'       date2.
    perform bdc_field       using   'INVFO-XBLNR'       t_head-xblnr.
    perform bdc_field       using   'INVFO-WRBTR'       t_head-wrbtr1.
    perform bdc_field       using   'INVFO-WAERS'       t_head-waers.
    perform bdc_field       using   'INVFO-SECCO'       t_head-secco.
    perform bdc_field       using   'INVFO-SGTXT'       t_head-sgtxt.
    cnt = 1.
    cnt1 = 1.
    loop at t_item where accnt = t_head-accnt.
    *if cnt > 4.
    *cnt = 4.
    *endif.
    if cnt1 gt 1.
    CONCATENATE 'ACGL_ITEM-MARKSP(' cnt ')' INTO fld.
    perform bdc_field      using   fld                   'X'.
    perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    perform bdc_field       using 'BDC_OKCODE'        '=0005'.
    endif.
    perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    perform bdc_field       using   'BDC_OKCODE'        '/00'.
    CONCATENATE 'ACGL_ITEM-HKONT(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-hkont.
    CONCATENATE 'ACGL_ITEM-WRBTR(' cnt ')' INTO fld.
    perform bdc_field  using       fld                t_item-wrbtr2.
    CONCATENATE 'ACGL_ITEM-MWSKZ(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-mwskz.
    CONCATENATE 'ACGL_ITEM-GSBER(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-gsber.
    CONCATENATE 'ACGL_ITEM-KOSTL(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-kostl.
    perform bdc_field      using  'BDC_CURSOR'  fld.
    *CONCATENATE 'ACGL_ITEM-MARKSP(' cnt ')' INTO fld.
    *perform bdc_field      using   fld                   'X'.
    cnt1 = cnt1 + 1.
    *cnt = cnt + 1.
    *if cnt > 1.
    *perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    *perform bdc_field       using 'BDC_OKCODE'        '=0005'.
    **perform bdc_field       using 'BDC_OKCODE'        '=0006'.
    *endif.
    endloop.
    perform bdc_dynpro      using 'SAPMF05A' '1100'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BS'.
    perform bdc_dynpro      using 'SAPMSSY0' '0120'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BU'.
    *perform bdc_transaction using 'FB60'.
    CALL TRANSACTION C_TRANS_FB60 USING IT_BDCDATA  options from l_option
                                 MESSAGES INTO IT_BDC_MESSAGES.
    perform error.
    perform errordownload.
    endloop.
    *perform close_group.
    *Form  data_upload
    FORM data_upload .
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
       FILENAME              =  p_file1
       FILETYPE              = 'DAT'
      TABLES
        DATA_TAB             =  t_record.
    ENDFORM.                    " data_upload
    *Form  file_selection
    FORM file_selection .
    CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  =  syst-cprog
          dynpro_number =  syst-dynnr
          field_name    = 'p_file1'
        IMPORTING
          file_name     =  p_file1.
    ENDFORM.                    " file_selection
    Form  BDC_DYNPRO
    FORM BDC_DYNPRO using program dynpro.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-PROGRAM = PROGRAM.
      IT_BDCDATA-DYNPRO = DYNPRO.
      IT_BDCDATA-DYNBEGIN = 'X'.
      APPEND  IT_BDCDATA.
    endform.
    *Form  BDC_FIELD
    FORM  bdc_field using fnam fval.
      CLEAR  IT_BDCDATA.
      IT_BDCDATA-FNAM = FNAM.
      IT_BDCDATA-FVAL = FVAL.
      APPEND  IT_BDCDATA.
    ENDFORM.
    Table Control
    FORM table_control .
      LOOP AT t_record.
        ON CHANGE OF t_record-accnt.
          MOVE-CORRESPONDING t_record TO t_head.
          APPEND t_head.
        ENDON.
      loop at t_head.
             t_item-accnt   =  t_head-accnt.
             t_item-hkont   =  t_record-hkont.
             t_item-wrbtr2  =  t_record-wrbtr2 .
             t_item-mwskz   =  t_record-mwskz .
             t_item-gsber   =  t_record-gsber .
             t_item-kostl   =  t_record-kostl.
        APPEND t_item.
    endloop.
         If t_record-level = 'H'.
             t_head-bukrs   =  t_record-text1.
             t_head-accnt   =  t_record-text2.
             t_head-xblnr   =  t_record-text3.
             t_head-wrbtr1  =  t_record-text4.
             t_head-waers   =  t_record-text5.
             t_head-secco   =  t_record-text6.
             t_head-sgtxt   =  t_record-text7.
          APPEND t_head.
         else.
            t_item-accnt   =  t_head-accnt.
            t_item-hkont   =  t_record-text1.
            t_item-wrbtr2  =  t_record-text2.
            t_item-mwskz   =  t_record-text3.
            t_item-gsber   =  t_record-text4.
            t_item-kostl   =  t_record-text5.
         APPEND t_item.
         endif.
      ENDLOOP.
    ENDFORM.
    FORM error .
      LOOP AT IT_BDC_MESSAGES.
        IF IT_BDC_MESSAGES-msgtyp = 'E'.
       SELECT single  * FROM t100  WHERE
                                    sprsl = it_BDC_MESSAGES-msgspra
                                    AND   arbgb = IT_BDC_MESSAGES-msgid
                                    AND   msgnr = IT_BDC_MESSAGES-msgnr.
          IF sy-subrc = 0.
            l_mstring = t100-text.
            IF l_mstring CS '&1'.
              REPLACE '&1' WITH IT_BDC_MESSAGES-msgv1 INTO l_mstring.
              REPLACE '&2' WITH IT_BDC_MESSAGES-msgv2 INTO l_mstring.
              REPLACE '&3' WITH IT_BDC_MESSAGES-msgv3 INTO l_mstring.
              REPLACE '&4' WITH IT_BDC_MESSAGES-msgv4 INTO l_mstring.
            ELSE.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv1 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv2 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv3 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv4 INTO l_mstring.
            ENDIF.
            CONDENSE l_mstring.
            it_mess-msgtyp = IT_BDC_MESSAGES-msgtyp.
            it_mess-lms = l_mstring.
            it_mess-msgv1 = IT_BDC_MESSAGES-msgv1.
            APPEND it_mess.
          ELSE.
            it_mess-msgtyp = IT_BDC_MESSAGES-msgtyp.
            it_mess-lms = l_mstring.
            it_mess-msgv1 = IT_BDC_MESSAGES-msgv1.
            APPEND it_mess.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDFORM.
    form errordownload.
    *down the internal table to excel file.
    call function 'EXCEL_OLE_STANDARD_DAT'
               EXPORTING
                    file_name                 = 'c:/Error.xls'
               TABLES
                    data_tab                  = it_mess
                    fieldnames                = excel
               EXCEPTIONS
                    file_not_exist            = 1
                    filename_expected         = 2
                    communication_error       = 3
                    ole_object_method_error   = 4
                    ole_object_property_error = 5
                    invalid_filename          = 6
                    invalid_pivot_fields      = 7
                    download_problem          = 8
                    others                    = 9.
    endform.
    Reward if useful
    Regards,
    Narasimha
    Edited by: narasimha marella on May 13, 2008 12:12 PM

  • How to solve screen resolution in bdc

    hi experts,
    please tell me how to solve screen resolution in bdc.
    regards.
    subhasis

    Hi,
    <b>Pls check other posts in SDN before posting ur thread..there is same thread related to this on this forum on same day.</b>
    Screen resolution means different in the screen display depending on ur system screen resolution.
    suppose ur system resolution is diff and another's system is different then like in Tcode VA01, there will be 3 lineitems and another there will be 5 lineitems ,
    so while doing recording and page down that will bw diff so there will be some problem
    So u have to set the screen resolution as default by using CTU parameters..
    write this code then
    f_option-updmode = 'S'.
    f_option-defsize = 'X'.* f
    _option-dismode = 'N'.
    *call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.
    Hope it helps.
    Regards,
    Sonika

  • Controlling Screen Resolution in BDCs

    Hi,
    Can any one explain about the process for Controlling Screen Resolution in BDCs.
    Thanks & Regards,
    Rajesh.

    Hi,
    If u write table control bdc program in 14'' monitor screen, then if the same program u run at different monitor size, then the screen resolution problem comes in to the picture,
    like, u get 5 records in table control in one screen, and some other records in other screen, to avoid this screen resolution problem we use CTU-PARAMS Structure.
    In ur program u have to set
    defsize type ctu_params-defsize value 'X',
    Then u will be free of screen resolution problem.
    Fill the str CTU_PARAMS-defsize = 'X' and pass in CTU stmnt as
    call transaction 'XXX' options using t_bdcdata ctu_params.
    Analysing :
    1. If nothing works, then we have to
    some ifs & buts.
    2. There shall be normally
    2-4 different kinds of resolution
    on various users comptuers.
    3. Based on this,
    we have to know beforehand,
    what will be the number of rows
    in the table control.
    4. The user can be given
    a selection/paraemter
    for resolution
    eg. 800x600
    1024x100
    axb
    etc.
    5. Based on this, we will hardcode
    in the program (based upon our knowledge/recording
    which we have seen and done)
    we will hardcode
    the number of lines
    in the VARIBLE.
    6. Then we can simply use this variable
    for our LOOP and logic purpose.
    7. It will be the responsibiltiy of the
    use to CHOOSE THE CORRECT resolution,
    on the selection-screen.
    For screen resolution use ctu_params, with default size
    Data : f_option type ctu_params,
    f_option-updmode = 'S'.
    f_option-defsize = 'X'.
    f_option-dismode = 'N'.
    call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.
    CALL TRANSACTION tcode... OPTIONS FROM opt
    ... OPTIONS FROM opt
    Effect
    Allows you to control processing using the values of the componetns of the structure opt, which must have the ABAP Dictionary type CTU_PARAMS. The components have the following meanings:
    DISMODE
    Display mode (like the MODE addition)
    UPDMODE
    Update mode (like the UPDATE addition)
    CATTMODE
    CATT mode (controls a CATT)
    CATT mode can have the following values:
    ' ' No CATT active
    'N' CATT without single-screen control
    'A' CATT with single-screen control
    DEFSIZE
    Use default window size
    RACOMMIT
    Do not end transaction at COMMIT WORK
    NOBINPT
    No batch input mode (that is, SY-BINPT = SPACE)
    NOBIEND
    No batch input mode after the end of BDC data.
    The components DEFSIZE , RACOMMIT, NOBINPT, and NOBIEND always take the following values:
    'X' Yes
    ' ' No
    If you do not use the OPTIONS FROM addition, the following control parameter settings apply:
    DISMODE
    From addition MODE
    UPDMODE
    From addition UPDATE
    CATTMODE
    No CATT active
    DEFSIZE
    Do not use default window size
    RACOMMIT
    Successful end on COMMIT WORK
    NOBINPT
    Batch input mode active ( SY-BINPT = X
    NOBIEND
    Batch input mode remains active after the BDC data
    Hope it makes u understand...
    Reagrds,

  • Cs6 fluid grid layout wide-screen resolution issue

    Hi all, I've done some poking around but have not found anything that answers this question - if I missed something please pass me the link!
    So I'm doing a new site in cs6 with fluid grid layouts. It's fine in terms of screen sizes, that is, small medium large, but different resolutions make the content appear differently. Specifically on desktop size screens with wide-screen resolutions (eg 1600X1200) the content is squeezed up towards the top of the page. The background image is fine on all resolutions - fills the screen - but the content on top changes according to the resolution. On my screen (1600X900) there's a nice distribution of content vertically. Is there any way to make it so that the content adjusts for resolution, not just size? Thanks in advance.

    What I'd like is for the widescreen view not to change the vertical distribution. That is, on my screen the content fills about 3/4 of the screen, which looks fine. On widescreen resolution, it barely covers 2/3 and it looks top-heavy - users I've asked with widescreen resolutions have said "it looks squished towards the top, why don't you move it down?". I guess I don't understand, if height as well as width is determined in percentage, why this happens (that lack of understanding could reveal my fundamental lack of understanding of aspect ratio/mathematics in general ).
    I suppose I could give a bigger margin at the top to move the content down the page in all cases, but on my screen, not widescreen, that's not ideal. And I'm hoping there's a way to adjust for widescreen without affecting all resolutions.

  • ThinkPad T500 Screen Resolution Issues

    Dear All,
    Wonder if anybody can provide any advise on the following issue(s):
    Just bought a T500 Centrino vpro, running on XP professional, 15" screen. Really happy with it, its fast and all. However, there seem to be only a few screen resolution options available. On my old Acer Travelmate, I used to have a 1024x600 which suited my myopia just fine. The closest setting to this one seems to be the 1024X768 but it is not great 'cos items appear a tad out of focus.
    I understand the T500 i just bought was built to accommodate Vista (as a side note, a Vista Business tag with serial number can be found at the back of my laptop although the machine came with XP pro preinstalled..This leads me to my other question: What happened to my Vista?) and this perhaps explains the limited resolution options available and the fact that apart from the native setting all other resolutions available are not optimal.
    Many thanks in advance.
    FB

    There are several methods to increase the font sizes on your screen:
    1) right click on desktop.
    2) select personalize
    3) select adjust font size (DPI) under the task list on the left
    4) select the larger font size that is available.
    Sometimes there are fonts that are just too small to read on the web browser.
    Hold down your Ctrl key and use the mouse scroll button to increase the font size.
    Alternatively Press the blue Fn button on the keyboard and then press the Space bar.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • How to set screen resolution in BDC

    hi pls give info regarding how to set resolution for screen
    thank you
    Ravi

    hi,
    For screen resolution use ctu_params, with default size
    Data : f_option type ctu_params,
    f_option-updmode = 'S'.
    f_option-defsize = 'X'.
    f_option-dismode = 'N'.
    call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.
    CALL TRANSACTION tcode... OPTIONS FROM opt
    ... OPTIONS FROM opt
    Effect
    Allows you to control processing using the values of the componetns of the structure opt, which must have the ABAP Dictionary type CTU_PARAMS. The components have the following meanings:
    DISMODE
    Display mode (like the MODE addition)
    UPDMODE
    Update mode (like the UPDATE addition)
    CATTMODE
    CATT mode (controls a CATT)
    CATT mode can have the following values:
    ' ' No CATT active
    'N' CATT without single-screen control
    'A' CATT with single-screen control
    DEFSIZE
    Use default window size
    RACOMMIT
    Do not end transaction at COMMIT WORK
    NOBINPT
    No batch input mode (that is, SY-BINPT = SPACE)
    NOBIEND
    No batch input mode after the end of BDC data.
    The components DEFSIZE , RACOMMIT, NOBINPT, and NOBIEND always take the following values:
    'X' Yes
    ' ' No
    If you do not use the OPTIONS FROM addition, the following control parameter settings apply:
    DISMODE
    From addition MODE
    UPDMODE
    From addition UPDATE
    CATTMODE
    No CATT active
    DEFSIZE
    Do not use default window size
    RACOMMIT
    Successful end on COMMIT WORK
    NOBINPT
    Batch input mode active ( SY-BINPT = X
    NOBIEND
    Batch input mode remains active after the BDC data

  • Screen Resolution Issue upon Install

    Howdy,
    I just installed Arch for the first time (after using Ubuntu for a few years) and I'm having a problem. For some reason, it is messing up the screen resolution after rebooting the system. It occurs every time, and the text appears to both wrap around the monitor from the middle and extend beyond the bottom of the screen. The error is reproducable; when I boot up an Ubuntu live-cd, I get the same issue when trying to set my screen resolution to 1280x800. Every mode below that works just fine.
    I tried a bunch of different things with respect to the screen resolution, but no matter what I set "vga=" to, I can't get it to display properly. X will open just fine, but with the same issue. For reference, here are the specs of my computer:
    http://h10025.www1.hp.com/ewfrf/wc/docu … ct=3686683
    Also, I am using the x86_64 install, though it happened with the i686 one as well.
    Any help is appreciated, and though I will do what I can, it will be hard for me to post anything from arch since I can't see much.
    Thank you in advance

    Are you using any DE? Does it happen even before you install X?
    There's a similar thread https://bbs.archlinux.org/viewtopic.php?id=119606

  • Screen Resolution Issue, Itunes? Vista?

    Hello!
    Ok, so every time I open Itunes my screen resolution gets automatically switched to the lowest possible resolution. An itunes pop up keeps saying:
    "For best results with itunes, use a screen resolution of at least 1024x768. You can change this setting in Display Settings".
    Which doesn't make sense to me anyway because why would it be switched to low when its saying it needs to be higher?
    I go into control panel and switch it back to a higher resolution only to have the same problem EVERY time I open itunes. I'm using vista but the pop ups are definitely from itunes. A second pop up message that shows up is:
    "Itunes.exe has been set to run in compatibility mode for an older version of windows. For best results turn off compatibility mode for itunes before you open it."
    So, I check under properties for itunes.exe and compatibility mode is NOT checked off. I can't figure out where to turn off compatibility. This issue and the pop ups only started after I ran itunes "as administrator" so vista would let me edit song information.
    Can anyone help me?
    Thanx

    So I've answered my own question. In the properties tab of itunes.exe I went into Settings for all Users and unchecked the screen resolution option. Relatively simple, but it proved exceedingly frustrating. I guess in Vista you just have to uncheck everything twice. I still can't get rid of the compatibility mode message, but that was the least of my worries.

  • Macbook Pro Retina Screen Resolution Issues

    I have just bought a retina display Macbook Pro (Early 2013) with OS X 10.8.3 Mountain Lion. 
    Before getting it, I did not realize what an effect it would have on the use of my existing programs, and had I known, I would have thought twice before switching from my non-Retina Macbook Pro. I have never had so many problems with a brand new computer. On my retina screen, programs such as Microsoft Office 2011, Adobe Creative Suite 5 and Acrobat Pro X run with an awful screen resolution and impossibile legibility. The pixelated graphics and image quality hurt my eyes, beyond the fact that I cannot see my lines, images and text properly in order to work with them.
    In these programs, the "Open in Low Resolution" button is enabled permanatly and cannot be changed as it's option is ghosted out. I do not know how to make it look better or what to do. I cannot work using this low resolution and this issue has affected my productivity.
    <Edited by Host>

    nadia_d,
    You have a new MBP you have 14 days to return/exchange, 90 days of free phone support, as well as 1 year at the store. Take advantage of this.
    Phone 800-692-7753

  • Windows 7 screen resolution issues

    Hello
    I've recently had to install Windows 7 on Bootcamp on my MacBook Pro - late 2011, 4GB RAM, 1GB AMD Radeon card - and I'm having three minor issues that are slowly driving me nuts:
    1) the screen resolution looks kinda fuzzy, with fonts looking readable but nowhere as clear as on the Mac side or even in normal Windows laptops;
    2) the maximum screen resolution is 1152x864. I thought I'd be allowed same resolutions as on the Mac side. Also because of that 4:3 ratio...
    3) ...the screen looks distorted, meaning all images I have to use in my work also look visibly out of proportion. Is there a way of fixing this, i.e using the Mac's 1.6:1 ratio?
    Could that be because perhaps the system is not recognising the video card?
    Many thanks to all and happy new year
    R

    Gabriel Valdes wrote:
    Where did you get the bootcamp support files?
    Step 1 in Boot Camp, Download The Windows Support Software.

  • [SOLVED] Screen resolution issue

    I've had an issue with screen resolution for awhile.  Basically, I have it set
    correctly, but a small portion of the screen is cut off on the right-hand side
    of the screen.  When using just the CLI, it's about a character that gets cut
    off, In X (regardless of DE) it's about half the width of a toolbar.  It's not
    that big a deal, but it's really starting to bother me.  I know I have the
    resolution set correctly (1680x1050).  The monitor is a LG Flatron W2252TQ.
    Any ideas?
    Last edited by BugenhagenXIII (2009-05-31 21:29:22)

    Wow, that was the simplest fix ever. I can't believe I didn't think of that.  All it took was one button press.
    Last edited by BugenhagenXIII (2009-05-31 21:31:26)

  • IMac/Boot Camp Screen Resolution Issue on XP

    Anyone here running Boot Camp on an iMac? I just loaded it on my MBPro and it works great, but on my iMac I can't get the screen resolution straight. My images are stretched when shown in XP. It's a 24" iMac.
    Thanks

    Post your question in the Boot Camp discussions:
    http://discussions.apple.com/forum.jspa?forumID=1165

Maybe you are looking for

  • Firefox doesn't display Google fonts on parts of my site

    I'm creating a website, using Joomla 3. My template uses Google Fonts (Roboto & Roboto Condensed). On Headers and Paragraphs the font is shown correctly, but not on my TopMenu (and submenus). Why is that? How can I fix this? Here's a link: http://s56

  • Not sure how to back up itunes

    help! in the instructions i keep finding to do this, they all say to select File >library >back up to disc but when i click on file, the library option isnt one of them so im not sure how to go about making the discs? any help is appreciated

  • Why can't I open multiple occurrances of Firefox anymore?

    I am no longer able to open multiple iterations of Firefox. I used to be able to open as many as I wanted == This happened == Every time Firefox opened == Yesterday - May 10, 2010

  • New Laptop and I can't transfer music.

    I just bought a new laptop. I've installed the software and I've connected my Ipod Mini. It brought up a message once saying "this ipod is registered to another computer do you want to change it to this computer" Please be aware that I am paraphrasin

  • Replace encoded characters in URL

    Hi gurus, I have the following requirement and I don't know how to solve it in the best way. I have a Z transaction for uploading a local file. This file contains URL's and after upload, there are stored in SAP. I need to check this URL and replace e