How to change screen resolution on touchpad

how to change screen resolution on touchpad ?i was working on my tp and out of the blues  my screen looks like it is at 800*600
or is this the screen itself that went bad?
can someboby please tell me the procedure to use the 12 mt warranty..
tia
Post relates to: HP TouchPad (WiFi)

Sorry to say reloading WebOS did not help this issue on my TP. contacted Support and was told to send it.Even sorrier to say that my TP is now lost. My tracking number reports it as delievered on Dec 5, but HP has no record of it.When I got back on Chat they  are now also telling me that my TP serial number is a EU model, even though my box clearly states HP Touchpad ,US, 1.20,32gb,Wifi.
Not sure what that even has to do with it being lost now..if it is as they say and no warranty on it in US I just want it sent back.
******Clicking the Thumbs-Up button is a way to say -Thanks!.******
**Click Accept as Solution on a Reply that solves your issue to help others**

Similar Messages

  • How to change Screen resolution

    Hi - I installed enterprise linux on VMware running on windows 7. The screen resolution show 800x600 which sucks. How can i change the screen resolution? thanks

    You need to install VMware Tools, which will allow the VM to have a better screen resolution and color depth, a gigabit network connection and intelligent memory management. Also set your monitor to a device that supports the higher resolution.
    http://www.devside.net/blog/vmware-player-resolution
    http://communities.vmware.com/thread/152837
    http://communities.vmware.com/message/488011

  • 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

  • Change Screen Resolution GNU/linux

    hi everyone
    i need to change screen resolution for my linux box.
    with command #xrandr
    showing only 640 X 480,can i add more size?how to add?
    tq

    Hi,
    Use this forum for feedback about OTN programs, Web site content, and systems - product-related questions will be deleted.
    Please post your question in the appropriate forum.
    Oracle Enterprise Linux
    Oracle Linux
    Linux (non-OEL)
    Generic Linux
    Thanks,
    Hussein

  • 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 do screen resolution in session method

    hi guru how to do screen resolution in session method.
    please tell me.
    regards
    subhasis

    Sometime back this is refered in SDN :
    Check table <i>CTU_PARAMS</i> and field <i>DEFSIZE</i> for setting fixed line of table control.
    CALL TRANSACTION 'VA01' USING it_bdcdata
    OPTIONS FROM OPT
    MESSAGES INTO it_mesg.
    opt of type ctu_params.
    WA_CTU_PARAMS-DISMODE = 'N'. "no screen mode
    WA_CTU_PARAMS-UPDMODE = 'S'. "synchronus update
    WA_CTU_PARAMS-NOBINPT = 'X'.
    WA_CTU_PARAMS-NOBIEND = 'X'.
    WA_CTU_PARAMS-DEFSIZE = 'X'. "Default size
    Default size will play good role in terms of resoultion. in one system in table control you can see 10rows, but in others system it will show 20 records. it depends on resoultion. but when you set the default size then it will take same (default screen size) in all the systems when you run BDC.
    Thanks!!

  • How to handle screen resolution in session method

    how to handle screen resolution in session method  without bdc_insert .

    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.

  • Problem to change screen resolution in MB Intel DG41 with video on board

    Hi, I need some help as soon as possible because this problem it´s make me difficult my job. I have installed the MAC OS Snow Leopard 10.6.2 in a Motherboard Intel DG41 with micro Core2Duo and video on board of this motherboard and don´t let me change screen resolution. I have a display of 22´ inches and the panel to change the screen resolution only mark 1024x768. I think the more likely it is that the system does not recognize me the drivers to this chipset of video. I searched everywhere on the internet but I have not found the solution.
    Thanks Fernando

    First of all sorry for my English is not very good. My PC is an Intel MotherBoard DG41 with onboard video and a micro Core2Duo. The system is MAC OS Snow Leopard 10.6.2.
    Thanks for replying

  • In elements 10 how to change screen color around photograph being worked on?

    In elements 10 how to change screen color around photograph being worked on?

    If you mean just the background of the tab or image window, right click it and choose what you want. If you mean for the whole program, no can do, sorry.

  • How to make screen resolution independent in BDC

    How to make screen resolution independent in BDC

    hi
    good
    You need to use the CTU_PARAM structure alon with the call transaction statment.
    **Sturcture of CTU_PARAM
    **DISMODE : Display mode (like the MODE addition 'A' , 'E', 'N')
    **UPDMODE: Update mode (like the UPDATE addition 'S', 'A')
    **DEFSIZE : Use default window size (Here we are handling those transaction by giving 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
    DATA : L_OPTION TYPE CTU_PARAMS, "Parameter string for runtime of CALL TRANSACTION
    L_SUBRC TYPE SYSUBRC.
    L_OPTION-DEFSIZE = 'X'.
    L_OPTION-DISMODE = P_MODE.
    L_OPTION-UPDMODE = 'S'.
    CALL TRANSACTION 'FK01' "FK01-Vendor master creation
    USING IT_BDCDATA
    MESSAGES INTO IT_MESSTAB
    OPTIONS FROM L_OPTION.
    thanks
    mrutyun^

  • 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

  • Change Screen Resolution or not Change Screen Resolution?

    I mean is it possible to change screen resolution with Java?
    I read some topics (not in this forum) that is impossible. I know there is a method to set at full screen a frame with the favourite resolution but does it effectively exist a method to set the screen with a favourite resolution?
    For example:
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setUndecorated(true);
            frame.setIgnoreRepaint(true);
            device.setFullScreenWindow(frame);
            if (displayMode != null && device.isDisplayChangeSupported()) {
                try {
                    device.setDisplayMode(displayMode);
                } catch (IllegalArgumentException iae) {
                    System.err.println("EX: " + iae);
            ...the device.setDisplayMode(displayMode) always throw me an exception: Invalid Display Mode (or something like that) with all permitted display modes (640by480, 800by600, 1024by768, etc...), with all permitted refresh rates, with all permitted color depths.
    Illuminate me please!
    Thanx in advance!

    Hi,
    I think i you should check this link
    http://forum.java.sun.com/thread.jspa?threadID=624649&messageID=3554316
    with help of above link you solve your problem of screen resolution
    but problem with above code is when you apply on frame that's ok but is you add any JDialog to that frame then JDialog and move JDialog with mouse dragged and dropped
    then dialog is invisibly run .
    you check this i you find any solution please post that it's urgent

  • Another feature to allow users to change screen resolution to HD for gaming

    I liked k3 Note, smartphone which is filled with lots of professional features. Can you add a control to change screen resolution to HD for games. Lots of people are there which are thinking that other phones' gpu are better and the Mali t760 m2 not so good.

    Hi
    In case someone else encounters the same problem, here is some more information.
    The high refresh rate is quite visible in Device Manager. It would refresh every one or two seconds. The cause seems to be a conflict between a Fingerprint software installed during the Task sequence and the Validity Sensors Drivers.
    I made a Scan for hardware change in Device manager and saw that a few devices were appearing as unknown. Right click, update drivers from local cache solved the problem.
    I cancelled install of the fingerprint software and did not encounter the problem anymore.
    Brgds
    bruno

  • How to Change the Resolution on the Monitor? Model HP 2011X- (20" flat screen monitor)

    "input signal out of range, change settings to 1600 x 900 -60HZ" How to make this change?
    I have a HP desktop PC and I recently purchased a HP 2011X  (20" flat monitor). Initially, I hooked it up to the pc and it worked and I did not have to install anything. But the other day, I ran the Microsoft's Fix-it-Center and ran the resolution problem detection even though I did not have any problem with the resolution. Within 5 seconds, a dark black screen appeared with the following message:
    INPUT SIGNAL OUT OF RANGE
    CHANGE SETTINGS TO
    1600 X 900 - 60HZ
    It displays this message and then the monitor goes to sleep. I press the buttons at the bottom of the monitor and from time to time, it displays a resolution screen that shows the monitor's resolution is not 1600 x 900 but that HP recommends that setting. However, I cannot change anything and that small screen with black background disappears in a few seconds. I cannot see anything else and I have tried the following:
    - Turned the PC on and off several times and the message is still there
    - Unplugged the power to the monitor and re-plugged it and no change
    - Unplugges the video cable from the PC to the monitor and re-plugged it and nothing
    Please help. I cannot see the PC screens at all even though the PC is on. All I see is the black background screen with white text with the above message. How do I fix this when I cannot see the Windows screen or from the monitor.
    Thanks,
    Bob

    Hello IE_PC_User,
    Let's try to get your computer to the boot options and go into VGA mode to see if you can change the resolution then.
    Start up your computer and start tapping away at the F8 key.
    Once the computer presents you with the boot options choose the VGA mdoe.
    It should boot up and everything look really out of place. Set the proper resolution and then reboot.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • How do I change screen resolution in command line?

    Hi, I was controlling a remote server by Apple Remote Desktop and have lost control of it after changing the resolution. Is there a way to change the resolution in the command line, without restarting?
    If I can screen resolution in the command line I can send the unix command to the remote server and hopefully fix my problem.

    Hi, I'm not aware of a way to do it without a little work. For example, I found some code at Mac OS X Hints that will change the screen resolution from a command line, but you'd have to compile it. It compiled for me on 10.4.11, and the poster there said it compiles on 10.5 for him.
    If you have the Xcode tools installed on your Mac, just copy that code into a plain text file, then save it as "main.c". Then, in Terminal, change directory to the same directory as that file and compile it:
    <pre class="command">gcc -o newscreen main.c -framework ApplicationServices</pre>
    Then copy it to your server and try running it there:
    <pre class="command">./newscreen -h nnnn -v nnnn</pre>
    where "nnnn" is the desired resolution...
    I hope that works, anyway, since I'm still using Tiger...
    charlie

Maybe you are looking for

  • Copying file in fileadapter with os command line

    Hi XI - Species I examined the following blogs: /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi /people/michal.krawczyk2/blog/2005/08/17/xi-operation-system-command--error-catching We are on XI 7

  • I have a us iPad and am in Germany. Friend has German IPad. Can I use the German charger in my US iPad to charge it?

    Can I use a European 220v iPad charger in my American iPad without frying my iPad?

  • Check cube data

    I have web query that i want to run. It's asking for certain variables eg : date. How can i check cube data to see what valid dates have been posted in the cube? so then I can put this in for the variable date ? thanks

  • Regarding CIN settings in SD

    I just want t know what all the registers updates in various sales processes like Export sales,Factory Sales,Deemed Export etc and what is the process flow for these from point of view of SD

  • PASSING A CR2008 REPORT NAME TO CRVIEWER

    Please bear with me since I'm new to this part of VS2005/cr2008. I have created a form using vc2005 where i have the crViewer in the form. If I hard code a cr2008 report name in the the report souce area, when I run the form, the report gets displaye