Lenovo ThinPad S1 Yoga want to make it faster.

Hello everyone, I just came into the Lenovo community the other day when i bought my LEnovo Thnkpad s1 yoga. i got the i5 version with up to 2.90 mhz. i know this is not a gaming computer but i would like to do some games on it, i was wondering if you guys could help me with the setting i could change or anything at all to make it better, so that downloaded games dont lag so much. An example of a game that i am trying to play is Spin Tires. hopefully you all can help i reall yappreciate it!

If you want to enhance your gaming experience by using the touchscreen you might also like GestureWorks. For example, by using this you can play Call of Duty or Counter-Strike Source by only using the touchscreen.
I am about to get it on Monday or Tuesday. Maybe it's something for you.
Jonas
Microsoft MVP: Windows Consumer Expert
Yoga Tablet 2 10 || ThinkPad X1 Carbon (20A7007MPH) || ThinkPad Helix (3698-6EU) || IdeaCentre B540
Twitter: @jonashendrickx

Similar Messages

  • I want to make performance fast of this query.

    Hello friends,
    I have used following queries in my 9 screen interactive report.Output/result is perfect but performance became damn slow.
    I have used........(note : T2 is internal table)
    SELECT VBELN INTO (T2-VBELN) FROM VBAK WHERE
    AUART IN AUART AND  VBELN IN VBELN.
    SELECT  NETWR POSNR INTO (T2-NETWR,T2-POSNR) FROM VBAP
    WHERE  VBELN = T2-VBELN .
      SELECT AUFNR KDPOS PSMNG WEMNG INTO (T2-AUFNR,T2-KDPOS,T2-PSMNG,  T2-WEMNG) FROM AFPO WHERE KDAUF =  T2-VBELN .
        SELECT  DMBTR MATNR MENGE ELIKZ INTO (T2-DMBTR,T2-MATNR,T2-MENGE,T2-ELIKZ) FROM AUFM WHERE AUFNR = T2-AUFNR AND ELIKZ <> 'X'.
        SELECT SINGLE MAKTX INTO (T2-MAKTX) FROM MAKT
        WHERE MATNR = T2-MATNR.
          APPEND T2.
        ENDSELECT.
      ENDSELECT.
    ENDSELECT.
    ENDSELECT.
    Please sujjest me the any other option for this query.
    Thanks in advance.
    Regards,
    n.i.m.z.

    Hi,
    Please have a look at this code and see if it helps you. You will have to test this code properly as I could not do that due to the fact that I do not have any relevant data on my system. Please let me know if this helps you and do not forget to reward points if this was helpful.
    TABLES: vbak.
    SELECT-OPTIONS: vbeln FOR vbak-vbeln,
                    auart FOR vbak-auart.
    DATA: BEGIN OF t2 OCCURS 0,
            vbeln TYPE vbak-vbeln,
            posnr TYPE vbap-posnr,
            netwr TYPE vbap-netwr,
            aufnr TYPE afpo-aufnr,
            kdpos TYPE afpo-kdpos,
            psmng TYPE afpo-psmng,
            wemng TYPE afpo-wemng,
            dmbtr TYPE aufm-dmbtr,
            matnr TYPE aufm-matnr,
            menge TYPE aufm-menge,
            elikz TYPE aufm-elikz,
            maktx TYPE makt-maktx,
          END OF t2,
          BEGIN OF t_vbak OCCURS 0,
            vbeln TYPE vbak-vbeln,
          END OF t_vbak,
          BEGIN OF t_vbap OCCURS 0,
            vbeln TYPE vbap-vbeln,
            posnr TYPE vbap-posnr,
            netwr TYPE vbap-netwr,
          END OF t_vbap,
          BEGIN OF t_afpo OCCURS 0,
            kdauf TYPE afpo-kdauf,
            kdpos TYPE afpo-kdpos,
            aufnr TYPE afpo-aufnr,
            posnr TYPE afpo-posnr,
            psmng TYPE afpo-psmng,
            wemng TYPE afpo-wemng,
          END OF t_afpo,
          BEGIN OF t_aufm OCCURS 0,
            aufnr TYPE aufm-aufnr,
            mblnr TYPE aufm-mblnr,
            mjahr TYPE aufm-mjahr,
            zeile TYPE aufm-zeile,
            dmbtr TYPE aufm-dmbtr,
            matnr TYPE aufm-matnr,
            menge TYPE aufm-menge,
            elikz TYPE aufm-elikz,
          END OF t_aufm,
          BEGIN OF t_makt OCCURS 0,
            matnr TYPE makt-matnr,
            maktx TYPE makt-maktx,
          END OF t_makt,
          t_afpo_tmp LIKE TABLE OF t_afpo,
          t_aufm_tmp LIKE TABLE OF t_aufm.
    REFRESH t2.
    SELECT vbeln
      FROM vbak
      INTO TABLE t_vbak
      WHERE vbeln IN vbeln
      AND   auart IN auart.
    IF sy-subrc EQ 0.
      SORT t_vbak BY vbeln.
      SELECT vbeln
             posnr
             netwr
        FROM vbap
        INTO TABLE t_vbap
        FOR ALL ENTRIES IN t_vbak
        WHERE vbeln EQ t_vbak-vbeln.
      IF sy-subrc EQ 0.
        SORT t_vbap BY vbeln
                       posnr.
        SELECT kdauf
               kdpos
               aufnr
               posnr
               psmng
               wemng
          FROM afpo
          INTO TABLE t_afpo
          FOR ALL ENTRIES IN t_vbap
          WHERE kdauf EQ t_vbap-vbeln
          AND   kdpos EQ t_vbap-posnr.
        IF sy-subrc EQ 0.
          SORT t_afpo BY kdauf
                         kdpos.
          t_afpo_tmp[] = t_afpo[].
          SORT t_afpo_tmp BY aufnr.
          DELETE ADJACENT DUPLICATES FROM t_afpo_tmp COMPARING aufnr.
          SELECT aufnr
                 mblnr
                 mjahr
                 zeile
                 dmbtr
                 matnr
                 menge
                 elikz
            FROM aufm
            INTO TABLE t_aufm
            FOR ALL ENTRIES IN t_afpo_tmp
            WHERE aufnr EQ t_afpo_tmp-aufnr.
          IF sy-subrc EQ 0.
            DELETE t_aufm WHERE elikz EQ 'X'.
            SORT t_aufm BY aufnr.
            IF NOT t_aufm[] IS INITIAL.
              t_aufm_tmp[] = t_aufm[].
              SORT t_aufm_tmp[] BY matnr.
              DELETE ADJACENT DUPLICATES FROM t_aufm_tmp COMPARING matnr.
              SELECT matnr
                     maktx
                FROM makt
                INTO TABLE t_makt
                FOR ALL ENTRIES IN t_aufm_tmp
                WHERE matnr EQ t_aufm_tmp-matnr
                AND   spras EQ sy-langu.
              IF sy-subrc EQ 0.
                SORT t_makt BY matnr.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    IF t_makt[] IS INITIAL.
      MESSAGE e208(00) WITH 'No records found'.
    ELSE.
      LOOP AT t_vbap.
        READ TABLE t_afpo WITH KEY kdauf = t_vbap-vbeln
                                   kdpos = t_vbap-posnr
                                   BINARY SEARCH
                                   TRANSPORTING
                                     kdpos
                                     aufnr
                                     psmng
                                     wemng.
        IF sy-subrc EQ 0.
          READ TABLE t_aufm WITH KEY aufnr = t_afpo-aufnr
                                     BINARY SEARCH
                                     TRANSPORTING
                                       dmbtr
                                       matnr
                                       menge
                                       elikz.
          IF sy-subrc EQ 0.
            READ TABLE t_makt WITH KEY matnr = t_aufm-matnr
                                       BINARY SEARCH
                                       TRANSPORTING
                                         maktx.
            IF sy-subrc EQ 0.
              t2-vbeln = t_vbap-vbeln.
              t2-posnr = t_vbap-posnr.
              t2-netwr = t_vbap-netwr.
              t2-aufnr = t_afpo-aufnr.
              t2-kdpos = t_afpo-kdpos.
              t2-psmng = t_afpo-psmng.
              t2-wemng = t_afpo-wemng.
              t2-dmbtr = t_aufm-dmbtr.
              t2-matnr = t_aufm-matnr.
              t2-menge = t_aufm-menge.
              t2-elikz = t_aufm-elikz.
              t2-maktx = t_makt-maktx.
              APPEND t2.
              CLEAR  t2.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDIF.
    Regards,
    Mark

  • Greeting,  I want to reformat my external hard drive using Mac OS Extended (Journaled, Encrypted ) but before formatting it, I want to make sure that if I loose the hard drive or the hard drive get stolen, no one will be able to retrieve or recover the in

    Greeting,
    I want to reformat my external hard drive using Mac OS Extended (Journaled, Encrypted ) but before formatting it, I want to make sure that if I loose the hard drive or the hard drive get stolen, no one will be able to retrieve or recover the information on it so could you tell me what kind of encryption will be used or is there any way to recover the information?
    Thanks!

    I think FileVault is used to encryp internal hard drive but I wanna encrypt an external hard drive with Mac OS Extended Journaled Encrypted which is completely different!

  • I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.  I've been unable to locate an app that will do this.

    I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.
    I've been unable to locate an app that will do this.  The Photos app that comes with the phone or iPad has extremely limited duration controls.  PhotoStream seems to load everything from my phone or iPad not allowing me to just load up a set group of images.
    iPhoto for iPad is getting some terrible recent reviews.  I tried a couple other free apps but they don't use Airplay.
    I can do something like this with iPhoto and my MB Air, but it's kind of ugly to have the computer open in order to connect by Airplay to my Apple TV.  I've thought the iPad or iPhone would be a lower profile controller.
    Am I out of luck?

    Thanks for your help.  Since I'm uninterested in loading all my photos (the only option) into photostream, I won't be able to use the settings in ATV.  I guess I'm just stuck with using iPhoto on my MB Air.  Thanks again.
    paul

  • When I turn my computer on I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. I think this has something to do with Apple "push". I had a problem with this in iTunes when I tried to sync my iPod Touc

    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. The change has something to do with Apple "push". I recently had a problem with"push" on iTunes when I tried to sync my iPod Touch. I have latest software for iTunes and iPod. Can anyone tell me what to do to get this change to install?

    ptford wrote:
    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware
    Since hardware cannot be changed with software, perhaps you would be so kind as to post the exact wording of the message?

  • Want to make my Ipad 4 into a second monitor

    I have an iPad 4 and a macbook pro and I want to connect them and make my ipad a second monitor. I know that I have to download an app but I want to make sure that I get the best/right one.
    I also saw that I can connect my ipad to my computer and control my computer from my ipad, so if anyone has experience with either of these things let me know!

    If you plan on using your iPad as a semi permanent second display when working at your Mac, if you plan to do this for long periods of time, make sure your iPad is plugged into power.
    These remote display apps tend to be more of a drain on the iPad's battery. Especially so if the remote display app uses Bluetooth instead of over WiFi.
    I like and use an app called Air Display.
    For using your iPad as a remote client to run your Mac remotely, there are a few decent apps for thiis, but it depend so what you really want to do.
    I wanted remote control of my Mac, locally, so I use a remote app called SplashTop remote.
    If you need remote location control of your Mac, also, there are other apps for that like LogMeIn and Team Viewer to name a few.

  • Hello and HELP! Over the years I have saved Invoices in my Documents. I have just tried to open them and all I am getting is " cannot be opened, Invoice**** is used by another user, do you want to make a copy?" That's on all my invoices.

    Can someone help please.
    I have just "lost" ( cannot open) all my saved Invoices in the Document folder.  All I am getting is " cannot open, Invoice ** is used bey another user, do you want to make copy? " That doesn't work either. I can't get anything on the time capsule either. How can I reset to an earlier time? Or what can I do?
    Thank you

    Did you recently reinstall the OS then copy all your files back over? Do a Get info on one of the documents and see if your current UserName is listed and has Read & Write permissions. If not select the Documents folder and check that for Read & Write permissions for your UserName. If it doesn't have R & W permissions Add it so it does.

  • HT4623 when i want to make update to my applications fromthe itune store it gives me a message says that i need to change from the indian or the philippines store to the kuwaiti store please help me

    Good day
    Kindly be noted i have iphone 4 updated with the new IOS6 and before few days when i want to make update it gaves me an error message says that i need to changey i tunes account from the indian to the kuwaiti account and one more time it gave me a message that i need to change my account from the philippine store to the kuwaiti store but from the other hand i already registerred to the kuwaiti store and i dont have sydia or what u call jail break and my phone is up to date with any updates from the itunes store so could you please help me because i need to update the application and i cannot .. You urgent support is highly appreciated and i will be thankful for you .
    Thanks
    Best regards
    Ahmed fouani
    Iphone 4 user .

    If you are getting a message to contact iTunes Support then you can do so via this link and ask them why the message is appearing (we are fellow users here on these forums, we won't know why) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I want to take remote access from an iTunes library off of my iPad ...when I hit edit from the remote app it pulls that library up ..if I delete it I just want to make sure that I'm not remotely wiping out the library, just access to it from my iPad ?

    I want to take remote access from an iTunes library off of my iPad ...when I hit edit from the remote app it pulls that library up ..if I delete it I just want to make sure that I'm not remotely wiping out the library, just access to it from my iPad ?

    Call the apple store you got it from and ask them. Sometimes in the past they've extended the 'no questions asked return' but only Apple can tell you for sure.

  • I have an Icloud account with my parents but want to make a new one. Will I lose everything that is currently on my phone? i.e. phone numbers, pictures, music

    I have an Icloud account with my parents but want to make a new one. Will I lose everything that is currently on my phone? i.e. phone numbers, pictures, music

    In case you're not clear - iPad/iPhone storage, and iCloud storage, are totally separate. Buying more iCloud storage does not give you more storage space on your device. Your device has a fixed storage space for apps and data (e.g., 16GB - which is more like 12GB in real terms). iCloud storage just allows you to store more documents, mail, photos, etc, in the cloud.
    Matt

  • I bought an iPad and want to make sure it's on the same apple account but my phone always come up with a different apple Id?

    I bought an iPad and want to make sure it's on the same apple account but my phone always come up with a different apple Id?

    Remember - if you bought any apps with another ID you cannot update them with a different ID.
    Try changing the ID in the App Store. Tap on Featured - swipe to the bottom of the screen - tap on the ID in the bottom left corner - and see if you can change it that way.
    If that doesn't work, sign out of your account altogether, restart the iPad and then sign in again.
    I guess I should ask - what ID is it coming up with and why is it coming up with that ID?
    Message was edited by: Demo

  • HT1689 I need to get my iPod to no longer be associated with the original i store account. My husband set it up through his account but now I have my own account. I don't want to go through his every time I want to make a change. how do I make this change

    I need to get my iPod to no longer be associated with the original i store account. My husband set it up through his account but now I have my own account. I don't want to go through his every time I want to make a change. how do I make this change?

    I am trying to stop using my I-pod under my husband's I-Tune account.  It was set up under his account and the only way I can use it under my account is to erase all of the songs my husband loaded on for me.  I had heard there is a duration that I-Pods are locked into to one account only, and I am trying to discover how I can use my account without having to erase everything on the I-Pod.  I know it sounds confusing but that's the way I-tunes have set it up.  thanks for asking.

  • I just got my Mac and I used my family Apple ID. It had all of my parent's information, I added my e-mail.I wanted to make my own Apple ID, but I couldn't use the same e-mail address again! How do I delete this information so I can make my own Apple ID?

    I just got my Mac and I used my family Apple ID. It had all of my parent's information, I added my e-mail.I wanted to make my own Apple ID, but I couldn't use the same e-mail address again! How do I delete this information so I can make my own Apple ID?

    Wendy P-G wrote:
    I just got my Mac and I used my family Apple ID. It had all of my parent's information, I added my e-mail.
    It is not clear how or where you "added" your email, but you cannot create an Apple ID using an email address that is already associated with another Apple ID.
    If that is what you did, delete that email address from your family's Apple ID. You should be free to create a new one.
    Do all that by starting here: https://appleid.apple.com/
    Select "Manage your Apple ID". Log in with your family's Apple ID and then delete your own email address wherever it appears.
    Save Changes, log out, and create the new one using the same website. This time select "Create an Apple ID".
    Please don't forget your security questions, and be sure to specify a "rescue email address" that is separate from all other Apple IDs. You will avoid so many problems that way...

  • I want to make a copy of slide show create from my own photographs and with a an audio track behind them. I have carefully followed the iDVD tutorials and burnt the result to a disc but image quality is very poor. What is wrong?

    I want to make a DVD of a slide-show with an audio track behind the photographs. I have carefully followed the iDVD video tutorials but the result is far from satisfactory. The quality of the images on the resulting DVD are blurred and indistict although the original photographs are of a very high quality. Where am I going wrong? Would I have better results from a different program than the inbuilt iDVD and if so so what programs have others found to be better? I should be grateful for some expert guidance.

    Hey Falcopebo,
    Thanks for using Apple Support Communities.
    Looks like you have image quality issues when using iDVD to burn.
    iDVD 7.0: Burned DVD has interlacing, pixelation, or image quality issues
    http://support.apple.com/kb/ht4078
    A standard DVD made by iDVD is made to the standard DVD resolution of 720 X 480, which is smaller than most HDTVs and monitors. When expanded to fit the entire screen or monitor, the image will distort slightly due to upscaling to fit the screen or monitor.
    Have a nice day,
    Mario

  • How can I change the billing country in my account? I want to make a purchase and the billing country isn't correct.

    I want to make a purchase of Photoshop CC but my billing country is wrong. How can I change it? Thanks.

    Hello,
    please try first Adobe ID and registration support and Get help with orders, refunds, and exchanges and if necessary and for further questions and if "open" please use chat, I had the best experiences. I quote from Adobe's employee Preran: The chat button is activated as soon as there is an agent available to help.
    Good luck!
    Hans-Günter

Maybe you are looking for

  • Can one computer have 2 apple IDs?

    My question is simple. My family all uses one Apple ID based on my husbands email address for all our purchases and it works fine in our family. Over the years as we updated computers however, about one third of our songs became deauthorized on the c

  • I can not upgrade to Java J2SE 5.0

    When I click on the package I follow the step and it gets to selecting a disk to install too and gives me this error message: "You cannot instal J2SE 5.0 release 1 package on this volume. The volume contains a new version of Java 1.5. A Java folder d

  • Calling another systems WD application in NWBC

    Hi experts, here at the customer side we're using SAP SRM 7.02 with NWBC (no portal). We've got the requirement to perform sanctioned party list screenings, which is basically a SAP GTS application, but integrate that into SRM as much as possible. Th

  • Special Characters "ß-" in Mail (iOS)

    I'd wrote a mail with the cityname Geiß-Nidda and the message on the iPad (send mails) is cut off. The text ends at Geiß- Nidda and the text behind is missing. I use IMAP and on my MB Mail everything looks fine. My iPhone also cut the mail. Is this a

  • Is SCSI available in Classic on PowerMac G5?

    Hi, I have a question for old gear aficionados. I have an expensive scanner that runs only in OS-9. The drivers work in Classic too, but then the SCSI link is not found. I was told that this is an issue with OS-9  in Classic. Programs handled in OS-9