Is there any way to stop my iPhone use data when i hit the data limit so i don't go over the data limit

is their any way to stop an iphone 4s from using data when i hit the 2gb limit on verizon wireless this way i dont have to pay the fee for extra data
thank you

Don't know of any way for it to happen automatically, but you can still use the phone and send/receive sms with cellular data turned off.

Similar Messages

  • Is there any way to stop Firefox continually prompting me to ugrade to the latest version?

    I uninstalled the update and went back to 3.6.26 because it's more stable and doesn't give me all the issues the newer versions do. I don't want to upgrade!!

    Firefox 3.6.27 is the latest Firefox 3.6.x version with the latest security patches.
    *http://www.mozilla.org/security/known-vulnerabilities/firefox36.html
    *Firefox 3.6.x: http://www.mozilla.org/en-US/firefox/all-older.html

  • Is there any way to simplyfy this sql using case when or any other condition

    Hi,
    Please ca you advise me to simplyfy the given sql         
     SELECT  
           CASE 
             WHEN  AxleNo=1  and AxleType = 'OFFSIDE OUTER'
                THEN SIZE    
            END AS off_1st_size_txt_out,
    CASE 
             WHEN  AxleNo=1  and AxleType = 'OFFSIDE OUTER'
                THEN make    
            END AS off_1st_make_txt_out,
    CASE 
             WHEN  AxleNo=1  and AxleType = 'OFFSIDE OUTER'
                THEN pattern    
            END AS off_1st_pat_txt_out,
    CASE
     WHEN  AxleNo=1  and AxleType = 'OFFSIDE OUTER'
                THEN TreadDepth1    
            END AS off_1st_size_out,
    CASE
    WHEN  AxleNo=1  and AxleType = 'OFFSIDE OUTER'
                THEN TreadDepth2    
            END AS off_1st_make_out,
    CASE
    WHEN  AxleNo=1  and AxleType = 'OFFSIDE OUTER'
                THEN TreadDepth3    
            END AS off_1st_pat_out,
    --1st near side outer
    CASE 
             WHEN  AxleNo=1  and AxleType = 'NEARSIDE OUTER'
                THEN SIZE    
            END AS near_1st_size_txt_out,
    CASE 
             WHEN  AxleNo=1  and AxleType = 'NEARSIDE OUTER'
                THEN make    
            END AS near_1st_make_txt_out,
    CASE 
             WHEN  AxleNo=1  and AxleType = 'NEARSIDE OUTER'
                THEN pattern    
            END AS near_1st_pat_txt_out,
    CASE
     WHEN  AxleNo=1  and AxleType = 'NEARSIDE OUTER'
                THEN TreadDepth1    
            END AS near_1st_size_out,
    CASE
    WHEN  AxleNo=1  and AxleType = 'NEARSIDE OUTER'
                THEN TreadDepth2    
            END AS near_1st_make_out,
    CASE
    WHEN  AxleNo=1  and AxleType = 'NEARSIDE OUTER'
                THEN TreadDepth3    
            END AS near_1st_pat_out,
    --2nd Offside Outer
           CASE 
             WHEN  AxleNo=2  and AxleType = 'OFFSIDE OUTER'
                THEN SIZE    
            END AS off_2nd_size_txt_out,
    CASE 
             WHEN  AxleNo=2  and AxleType = 'OFFSIDE OUTER'
                THEN make    
            END AS off_2nd_make_txt_out,
    CASE 
             WHEN  AxleNo=2  and AxleType = 'OFFSIDE OUTER'
                THEN pattern    
            END AS off_2nd_pat_txt_out,
    CASE
     WHEN  AxleNo=2  and AxleType = 'OFFSIDE OUTER'
                THEN TreadDepth1    
            END AS off_2nd_size_out,
    CASE
    WHEN  AxleNo=2  and AxleType = 'OFFSIDE OUTER'
                THEN TreadDepth2    
            END AS off_2nd_make_out,
    CASE
    WHEN  AxleNo=1  and AxleType = 'OFFSIDE OUTER'
                THEN TreadDepth3    
            END AS off_2nd_pat_out
    from my fleets
    With Many Thanks
    Pol
    polachan

    Hello, 
    the same result ( maybe with records in slightly different order ), you can obtain using this code snippet.
    SELECT   SIZE AS off_1st_size_txt_out,
      make AS off_1st_make_txt_out,
    pattern AS off_1st_pat_txt_out,
    TreadDepth1 AS off_1st_size_out,
    TreadDepth2 AS off_1st_make_out,
    TreadDepth3 AS off_1st_pat_out,
    NULL AS near_1st_size_txt_out,
      NULL AS near_1st_make_txt_out,
    NULL AS near_1st_pat_txt_out,
    NULL AS near_1st_size_out,
    NULL AS near_1st_make_out,
    NULL AS near_1st_pat_out,
    NULL AS off_2nd_size_txt_out,
      NULL AS off_2nd_make_txt_out,
    NULL AS off_2nd_pat_txt_out,
    NULL AS off_2nd_size_out,
    NULL AS off_2nd_make_out,
    NULL AS off_2nd_pat_out
    WHERE AxleNo=1  and AxleType = 'OFFSIDE OUTER'
    from my fleets
    UNION
    SELECT   NULL AS off_1st_size_txt_out,
      NULL AS off_1st_make_txt_out,
    NULL AS off_1st_pat_txt_out,
    NULL AS off_1st_size_out,
    NULL AS off_1st_make_out,
    NULL AS off_1st_pat_out,
    SIZE AS near_1st_size_txt_out,
      make AS near_1st_make_txt_out,
    pattern AS near_1st_pat_txt_out,
    TreadDepth1 AS near_1st_size_out,
    TreadDepth2 AS near_1st_make_out,
    TreadDepth3 AS near_1st_pat_out,
    NULL AS off_2nd_size_txt_out,
      NULL AS off_2nd_make_txt_out,
    NULL AS off_2nd_pat_txt_out,
    NULL AS off_2nd_size_out,
    NULL AS off_2nd_make_out,
    NULL AS off_2nd_pat_out
    WHERE AxleNo=1  and AxleType = 'NEARSIDE OUTER'
    from my fleets
    UNION
    SELECT   NULL AS off_1st_size_txt_out,
      NULL AS off_1st_make_txt_out,
    NULL AS off_1st_pat_txt_out,
    NULL AS off_1st_size_out,
    NULL AS off_1st_make_out,
    NULL AS off_1st_pat_out,
    NULL AS near_1st_size_txt_out,
      NULL AS near_1st_make_txt_out,
    NULL AS near_1st_pat_txt_out,
    NULL AS near_1st_size_out,
    NULL AS near_1st_make_out,
    NULL AS near_1st_pat_out,
    SIZE AS off_2nd_size_txt_out,
      make AS off_2nd_make_txt_out,
    pattern AS off_2nd_pat_txt_out,
    TreadDepth1 AS off_2nd_size_out,
    TreadDepth2 AS off_2nd_make_out,
    TreadDepth3 AS off_2nd_pat_out
    WHERE AxleNo=2  and AxleType = 'OFFSIDE OUTER'
    from my fleets
    If you find it easier to understand and to maintain. The result is made using "UNION" .
    Šimon

  • When I try to print a drawing imported from my ipad iphoto crops it. Is there any way to stop this?

    When I try to print a drawing imported from my ipad iphoto crops it. Is there any way to stop this?

    Usual cause: printing at the wrong aspect ratio for the image - trying to print 5 x 3 in the shape of a 6 x 4 for instance.
    Regards
    TD

  • HT204266 I erase all application of my iphone 4 with erase restore and now it's in restore mode. Now is there any way to restore my iphone without backup. Please help me. I have no need my previous file i just want my i phone ok and work smoothly as new p

    Hi,
    I erase all application of my iphone 4 with erase restore without any backup & i also lose the product serial number. Now it's in restore mode. Now is there any way to restore my iphone without backup. Please help me. I have no need my previous file I just want my iphone4 ok and work smoothly as like new ipone justlike i bought it at first time. I can't restore it. So Please help me to solv this proble.

    See Here  > without the Backup  >  http://support.apple.com/kb/HT4137

  • Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files?

    Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files? I just want to view / delete files without importing them.
    For instance I have 1200 photos on my iPhone Camera Roll. Some of these are shots, that I've taken multiple times, some good, some bad. I just want to clean up my Camera Roll, but going through the pictures on the iPhone's small screen is tedious. I'd much rather look at the camera roll's photo's on my Mac, and then decide which files I'd like to keep, and which to delete.
    I don't want to import the files, as when I import the files, and delete them from Camera Roll, now the Photo's are not on my phone, and the only way to get them back on my Phone is to Import them back in using iTunes, and then they go into the Picture Library and not the Camera Roll.
    In the same way as I can view Pics from my digital camera's SD card on a Mac without having to actually copy them to my computer, is there any app out there that will let me view my iPhone pics without importing them.

    gsharp01 wrote:
    Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files? I just want to view / delete files without importing them.
    The short answer is yes.
    Connect your iPhone to your computer.
    Open Image Capture application.
    Click on the 4 little squares at bottom to view them as photos, not a list.
    Select the photos them click the No Entry icon at bottom to delete.

  • Is there any way to stop running apps from showing in dock

    Is there any way to stop running applications from showing in the dock

    MacUpdate.com for OnyX or TinkerTool, one of those has the ability to lock the Dock so no changes occur, basically giving you what you want.

  • Is there any way to stop an app from updating?  I accidently hit update all, and have an app I don't want updated.

    Is there any way to stop an app from updating? I accidently hit "update all" and have an app i don't want updated.  Thanks

    you can't reverse the process, once you accepted there is no other way, if you sync it to your itunes library in your computer it will automatically update the updated app as well.
    What you can try though is delete the app from your iPad and try syncing it to your itunes library but if you set up iCloud it may update the app automatically

  • Is there any ways to stop Quicktime player from occupying audio hardware?

    Hi, my PC system is Window XP Pro SP2, HP xw8400 Workstation w/ 2G Ram. And the PC has a Digidesign Pro Tools HD 1 audio system installed.
    My problem is that after Quicktime player lauches, it will occupy the Pro Tools HD's hardware. And if I want to start Pro Tools software, "digidesign hardware is in use by another application." warning will occur and Pro Tools software will then quit. BTW, Digidesign's audio driver is not multi-clients compatible.
    I have set Quicktime player's audio playback device to PC motherboard's audio device, and system's audio device is also motherboard's audio device, I even have checked the "use default device only" option. I can't understand why Quicktime player still occupies Digidesign's hardware, even it plays back audio through motherboard's audio device.
    Though I can quite Quicktime player before lauching Pro Tools software, I still feel it's annoying and inconvenient, and want to know some ways to solve this problem.
    Anyone can help? Thanks in advance. I have asked for help in Digidesign's offcial forum, no response.
    BTW, the Quicktime player version on my system is 7.6.5, and each time Quicktime player launches, the sample rate led on the Digidesign's audio interface will flash, indicating that QT player is accessing Digidesign's hardware.
    Message was edited by: compusic
    Message was edited by: compusic

    Victor.jacob wrote:
    I have a Blue Ant Q2 Bluetooth headset. When it's paired, is there any way to stop all audio from streaming to it? I want to hear the iPad "ring" so I don't have to have the earpiece in my ear all day, or be able to play audio through the speakers instead of the earpiece. I feel like I'm missing something simple.
    You are missing something simple but lets get it to stop as you want. Go to Settings/General/Bluetooth turn it off.

  • I was an apple beta tester for iOS7 and now my iPhone 5 shut down, it's unresponsive it gets recognized by iTunes when plugged into the computer but that's it. Since I was a beta tester is there any way to fix my iPhone??

    I was an apple beta tester for iOS7 and now my iPhone 5 shut down, it's unresponsive it gets recognized by iTunes when plugged into the computer but that's it. Since I was a beta tester is there any way to fix my iPhone??

    Are you still running iOS 7 bet?. If so go to the private developer section for help. We cannot help you here with beta software.

  • Is there any way to stop details showing up in reminders?

    Is there any way to stop details showing up in reminders? Before a recent ios update, you had to click on the reminder to show details. Now the details show up in reminders automatically which has made my task list unmanageable - I often create tasks from emails I get in my business Microsoft Outlook/Exchange account.
    Before the update, the reminder list worked really well. I got a nice neat list and could click into individual reminders for all the details if I needed them.
    Now I don't get a nice neat list - but all the content of my emails in my reminder list.
    There doesn't seem to be any way to change the settings so the reminder doesn't include all the details.
    Has anyone else found this a problem? Help!

    Here are another couple standalone utilities, that I haven't tested, myself:
    http://www.photothumb.com/metastripper/
    http://www.download3k.com/Photo-Graphic/Converters-Optimizers/Download-Exif-Tag-Remover.ht ml

  • Tell me please, is there any way to unlock my iPhone, if the contract is ended and I moved to Ukraine

    Tell me please, is there any way to unlock my iPhone, if the contract is ended and I moved to Ukraine

    1. Try doing a hard reset:
    Press and hold both the Home button and the Sleep/wake button simultaneously for about 15 seconds and release when the Apple logo appears.
    2. If that doesn't solve the issue, backup the device and restore it as new.
    In that case, use: http://support.apple.com/kb/HT4137
    NB: set up as a NEW device because a software issue will be in the backup. If the issue persists after restoring as new, you should offer the device for service.
    If you get specific error messages/codes in iTunes when updating/restoring, check this: http://support.apple.com/kb/ts3694 for causes and solutions
    Good luck
    Stijn

  • Is there any way to locate your iPhone even though it is dead or offline?

    Is there any way to locate your iPhone even though it is dead or offline?

    Other than by physically looking for it, no.

  • Is there any way of stopping ios7 from downloading after it starts? If not, is there a way to go back to the previous system?

    Is there any way of stopping ios7 from downloading once it has started? If not, is there any way to go back to the previous program instead of ios7?

    turn off wifi

  • TS3694 I am using iphone 3gs, I upgraded my i-os to 6.0 from 5.1.1 however I am facing performance issue, along with this all the applications including settings or any other shuts down automatically. Is there any way by which I can use my phone in better

    I am using iphone 3gs, I upgraded my i-os to 6.0 from 5.1.1 however I am facing performance issue, along with this all the applications including settings or any other shuts down automatically. Is there any way by which I can use my phone in better way?

    No, downgrading from any version of iOS to an earlier version is not supported.

Maybe you are looking for