Who has nokia 701 and WhatsApp ? Please enter

I'd like to know if turning 3G off on the nokia 701 (or any nokia belle), and being in an area without wifi - Will whatsapp still work? Because from what I understand, Whatsapp is always connected. Does that mean that Whatsapp will force my phone to connect over 3g EVEN IF I TURNED  3G OFF? 
This question is directed at people running Belle because you have the option to turn 3G off from the notifications menu. Please check that out, turn Wifi and 3g off and let me know if Whatsapp created a data connection, or not? 
I wanna be able to control my data and so I dont want Whatsapp to open my 3g for whatever reason, can i be sure? 
THANKS.
Solved!
Go to Solution.

Hi unger123,
Thank you for your post.
It is true that Whatsapp is always sucking data because it delivers message instantly, so it has to be connected at all time. But when you turn off 3G and wifi, Whatsapp should not be able to connect to the internet. Your messages will then get delivered once you reconnect.
Hope this helps, 
Sergent
If my response has helped you in any way, show it by hitting the WHITE STAR... If you don't a MONSTER will come and eat your lunch...
Also hit the Accept as solution button, so OTHERS can benefit from this helpful answer...
DON'T BE SHY...

Similar Messages

  • Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?

    Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?  Is there a demo out there that actually works in VS2012?  Is there anyone who has actually been able to compile and deploy that
    apparently obsolete Polygons demo?  (Pardon my impatience but I'm running a bit short of time here.)
    After much hacking and googling I was able to get Polygons to compile but I still can't deploy it to the toolbox.  ('The custom report item type PolygonsDesigner is not installed').   I've modified the RSReportDesigner.config
    as instructed but I have no rssrvpolicy.config file on my local machine and
    as yet I have no idea if that is necessary for local development.
    In order to get it to compile I first added the reference  C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.ProcessingCore.dll to both projects.
    To the PolygonsDesigner Project I also added the references:
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportDesigner.Controls.dll
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.Designer.11.0.dll
    C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\Microsoft.ReportingServices.Interfaces.dll
    Are these the correct references?  
    Exactly what software do you need installed on your local machine in addition to VS2012 in order to create a custom control?
    (Designer.11.0 was added per the instructions in reference: https://connect.microsoft.com/VisualStudio/feedback/details/783391/unable-to-integrate-previously-working-ssrs-custom-report-item-to-vs-2012s-toolbox  
    After that I added the alias RSDesigner to it's properties and   extern alias RSDesigner; at the top of the PolygonsDesigner.cs file. )
    As of now, the top of the PolygonsDesigner.cs is as follows.  I don't recall making any other changes to the code.  As far as I can remember this is all I did in order to be able to compile the code in VS2012.
        extern alias RSDesigner;
        using System;
        using System.ComponentModel;
        using System.ComponentModel.Design;
        using System.Collections;
        using System.Collections.Generic;
        using System.Diagnostics;
        using System.Drawing;
        using System.Windows.Forms;
        using Microsoft.ReportDesigner;
        using Microsoft.ReportDesigner.Design;
        using Microsoft.ReportingServices.Interfaces;
        using Microsoft.ReportingServices.RdlObjectModel;
        using System.Xml;
        using System.Xml.Xsl;
        using System.Xml.XPath;
        [LocalizedName("Polygons")]
        [Editor(typeof(CustomEditor), typeof(ComponentEditor))]
        [ToolboxBitmap(typeof(PolygonsDesigner), "Polygons.ico")]      
        [CustomReportItem("Polygons")]
        [ToolboxItem(typeof(RSDesigner::Microsoft.ReportDesigner.Shell.CRIToolboxItem))] 
        [System.CLSCompliant(false)]
        public class PolygonsDesigner : CustomReportItemDesigner
        {   etc...

    Just fixed this myself.
    It appears the documentation online is wrong and the sample code is missing a reference to a reporting services dll and an attribute.
    What you need to do to get it working in VS2012 is add a reference to: Microsoft.ReportingServices.designer.11.0.dll to the PolygonsDesigner project and then add the following attribute to the PolygonsDesigner class: [ToolboxItem(typeof(Microsoft.ReportDesigner.Shell.CRIToolboxItem))]
    I also removed the [System.CLSCompliant(false)] attribute.
    You then recompile and place both dlls in C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies directory and the PolygonsDesigner.dll into the C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin
    or what ever is you reporting services path.
    You also need to change the Microsoft example for the rereportserver.config file to:
        <ReportItemDesigner>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItems>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCRI,PolygonsCRI"/>
        </ReportItems>
     Notice that I changed the namespaces and class to what is in the actual code so if you change it make sure you change it here.
    And here in the RSReportDesigner.config:
    <ReportItems>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCustomReportItem,PolygonsCRI" />
        </ReportItems>
        <ReportItemDesigner>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItemConverter>
          <Converter Source="Chart" Target="Polygons" Type="PolygonsCRI.PolygonsConverter, PolygonsDesigner" />
        </ReportItemConverter>
    Notice I haven't changed the last part as I didn't know what the PolygonsCRI.PolygonsConverter was.
    And make sure the rssrvpolicy.config looks like this:
         <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust" Description="This code group grants PolygonsCRI.dll FullTrust permission. ">
           <IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\Program Files\Microsoft SQL Server\MSRS10_50.SQLSERVER\Reporting Services\ReportServer\bin\PolygonsCRI.dll" />
        </CodeGroup>
    After a restart of ssrs and relaunch of VS2012 I opened a test project and added the PolygonsDesigner.dll to the toolbox and it works.
    Jamie

  • HT201272 wait just to be sure i am not the only one who has the "term and conditions" problem

    wait just to be sure i am not the only one who has the "term and conditions" problem

    Go to Crucial.com and use one of their two methods to determine what upgrades are available for your Mac:
    I would purchase the modules from Crucial as they are very reliable and wiill work with you if you have problems.
    OT

  • NOKIA 701 AND TATA DOCOMO

    I HAVE NOKI 701 I M FROM INDIA AND USING VODAFONE AS SERVICE OPERATOR.I HAVE A 3G USB MODEM IN WHICH I AM USING TATA DOCOMO AS OPERATOR I HAVE TRIED TO INSERT MY TATA DOCOMO SIM IN MY NOKIA 701 BUT SURPRISINGLY THERE IS NO NETWORK(2G OR 3G)I TRIED DIFFRENT 3-4 DOCOMO SIMS OF MY FRIENDS ASWELL BUT THERE IS NO NETWORK FOR DOCOMO IN MY NOKIA 701 I CAN ACCESS NETWORK IN MY USB MODEM AT SAME PLACE.CAN ANYONE HELP ME TO ACESS DOCOMO NETWORK IN MY NOKIA 701 THNX IN ADVANCE
    Hitting the KUDOS star makes me feel good
    Solved!
    Go to Solution.

    Finally after showing my mobile to nokia care problem solved now I can get full network actually last week my mobile's d-cover was replaced and the nokia care center operator leaved some network component loosed in mobile finally they put all in place and done thnx nokia care
    Hitting the KUDOS star makes me feel good

  • Why won't iMessage send from my iPad to a contact who has an iPhone and uses iMessage on her iPhone?

    Sometimes when I'm using my iPad and I want to send a message via iMessage it won't let me. This happens even when I know that the recipient has an iPhone and uses the iMessage app on her iPhone. Why is that? I can use iMessage from my iPhone and it will go to her iPhone. Why can't it work from my iPad.?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Business process check-in/check-out - who has checked out and when?

    We have been using the business process check-in/check-out functionality for 18 months and there are an increasing number of process's that have been checked out to the maintenance project and never checked in again. Is there a straight forward way in the system to see who had checked out a business process and when? When using the SOLMAN_DIRECTORY transaction it is easy to see which process's are checked out as they are marked the red OUT symbol and have check-out status = checked out - but no other information about the check-out seems to be available either in this transaction or on a separate report.

    Hello Steve,
    What Peter neglected to tell you is once you enable history on the Solution a history log will begin to populate.
    It will show as the standard "Log" icon for HISTORY. Every change will be logged at each level of the structure.
    Here is an example of a History log line....while it is not a check-in.out change it will give you an idea
    Name             Date             Time              Change                               Object                           Old Value           New Value
    I809573     24.01.2011     22:33:32     Process Availability     Material Management          7 x 24 h
    What you can do is filter the report on the values that will give you the check-in/check out against the objects you want to track.
    This is how you can use the "Enable History" to get the information you are interested it.
    Just two things to be aware of : 1) The history will not be retro active (unless it was already enabled), so it will start from the day you enable logging (history), and logs take up space, which at some point maintenance will likely be required, however I don't see these logs having high disk usuage.
    If it were documents that you wanted a report on check-in/check-out for, you likely could use the transaction Solar_Eval under Documents, but there are no standard reports for this...and filtering the History log file accordingly is about the best reporting
    that would give a result. This log file can be printed, or you could capture the printoutput to a file and there is your Electronic version of the report.
    I hope this has helped.
    Regards,
    Paul

  • Another person who has a problem with Flash - Please Help!!

    I have a Dell Dimension 4700 Intel (R) Pentium (R) - 4 CPU   2.80 GHz    2.79 GHz    504 MB of RAM
    For a few years now I would have to restore the computer to an earlier time after an update was done in order to view youtube, etc.  It seemed that when my computer did an automatic update it would mess up the flash player.
    My husband just recently did another update and now the flash isn't working and the computer won't restore anymore.
    I keep getting the following messages:  adobe flash player active x set up failed to install 19166
    program error:  failed to register      status installation complete
    I have uninstalled and installed the flash several times
    everytime i go to install flash it says:  Adobe Flash Player 10:  This application has been downloaded before.  Reload?
    Then I get:  Your security settings do not allow websites to use ActiveX controls installed on your computer.
    I don't want to take this somewhere because I have a feeling that will just wipe the computer clean and I have a feeling it is something stupid that I'm not doing.
    Please Help.

    OK...Check, check...did all that. I am cutting and pasting a segment from the flash troubleshooting page because its exactly what is happening to me. There were no responses to help this person.
    "I've tried installing flash player 9 but am not able to do so. It will begin installing but when it gets to 'items remaining: 4' the progress bar continues to move and underneath says searching but nothing happens. I tried leaving it on all night but same thing when I came back in the morning. When I close the installer it then says 'stopping now may result in an incomplete set of software' Also, when I tried uninstalling previous versions, the uninstaller does nothing. It says 'items uninstalled: 0' and 'processing', but same thing, the thing spins but nothing happens. i tried the other steps given to see if that helped but nothing seems to work."
    Here is the page...
    http://sdc.shockwave.com/cfusion/webforums/forum/messageview.cfm?forumid=44&cati d=184&threadid=1267248&enterthread=y#4577694
    I tried some of the suggestions above the last two posts. But it looks like my problem is the same as those.
    I even tried to post on there but from what I see it looks like I have to have flash to do it...I get the page with the blue lego brick.
    I'm pulling my hair out. I didn't realize how much of the internet ran on flash.

  • School who has windows servers and recently purchased iMacs with Apple svrs

    Hi Folks
    I like to introduce myself to the forum. My name is Ranj and I am the IT manager at Queensbridge School in Birmingham, UK.
    Our school has recently purchased 44 iMacs with an Xserve and XRAID box.
    We are school with mainly windows and unix servers and this reason for us buying a apple server was so we could lock the macs down using managed preferences which we have successfully done.
    Our Xserve is connected to our active directory system, and from there it allows our students to login to the macs using there windows credetionals. As the apple server talks directly to AD it also connects to their home share folders.
    The problem is my windows server only has a 400gb raid and my plan is to somehow migrate all the home folders from the windows 2003 server to our XRAID but am having trouble with it preserving the windows permissions.
    I know that Apple can talk via SMB and if i moved the home directory data to the apple server i would still be able to see it on the windows side but am having trouble copying all the files and folders whilst keeping all the ownership and security information.
    Does anyone know if there is a util or script which will allow me to do this. Has anyone successfully used robocopy (a microsoft tool) which i am familar with and managed to copy data from a windows server to an apple server.
    If anyone can help me with this problem it would be most greatly appreciated.
    I have to say I been a Windows user all my life but can now see why Apple Macs are a big deal, there are so much better at what they do compared to their window conterparts.
    I am looking forward to the world of Apple and this forum
    Thanks

    Hi Ranj,
    welcome on the forum.
    I use the cli command rsync for it. I know colleges who use ditto or asr for it.
    all programs have good man pages or help.
    Regards
    Donald

  • I have iphone 5 and can not send a text to one person who has iphone 4s and on same family plan

    I have an iphone 5... and also a family plan.  I can not send a text to my daughter on the same plan. She has an iphone 4s.  I have tried mulitiple things to get this to work.... It started about 10 days ago... I have delete text stream for her and any group messages. Also her contact in contacts.  Also readded her contact with area code....then with 1 ...then just with 1... All rebooting in between each new thing i did... Checked to see if sms is turned on ..yes and turned it off... turned of imessages and back on... rebooting in between.  Also signed out of and back into apple id. Also with reboots... did a soft reset.  Upgraded to ios 8 about 2 days ago... And a few times in last 10 days i could send for a few hours then it was gone again...... VERY frustrated at this point....Also i can text many others including iphones and so can she....
    Lee-Ann

        Thank you for reaching out to us, labrylao4. Regarding the issues with messaging, is this affecting only SMS, iMessages, or both? When you or her try to send each other messages, do you receive any error messages while it is sending? If it is for iMessages, have you tried to send while connected to WiFi?
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • NOKIA 701 AND HARD RESET

    I LOST MY ALL NOKIA DEFAULT APPS .LIKE OVI STORE/OVI MUSIC AND MANY MORE AFTER THREE KEY HARD RESET,IS THERE ANY WAY TO RESTORE MY ALL APS WHICH I WAS HAVING PREVIOUSLY,EVEN I HAVE REINSTALLED MY PHONE SOFTWARE TWICE USING NOKIA SUIT BUT STILL DOESNT HELPED ANY IDEA???HOW TO GET BACK ALL APPS?
    Hitting the KUDOS star makes me feel good

    If they are not available in SW update in menu or at the store you may need to have the phone re-flashed at a Nokia Care Point !
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • HELP - anyone who has bought MacBook and started it can help!

    When I first turned on my MacBook (with Mac OS 10.4.10), I started configuring it with the autolaunched Setup Assistant. I got up to the stage where I was asked to photograph myself. I messed around with it and must have tried the photography too many times because then instead of finishing the configuration, the MacBook just moved on to what I assume is normal operation.
    So my question is, did I miss anything vital in the configuration? Can/should I relaunch the configuration, this time to complete it? Or do I just enter info (which I missed out on doing during incomplete configuration) another way now I am already "in the system"?
    I'm quite new to Macs. Hope someone remembers the config and can help!

    So you didn't purchase the MacBook new from an authorized Apple dealer or from Apple. Where ever/whomever you got it from should have given you the OS disks that came with the MacBook. You can't boot the Mac from an OS less than it came with from the factory. Are you sure that 10.4.10 is a factory installed OS? There is a way to get the Setup Assistant to re-run without reinstalling the OS. Follow this:
    http://superpixel.ch/articles/running-setup-assistant-again/

  • For everyone who has problems burning and error 4280

    I have read countless posts about this problem, and spent hours trying to resolve it, as well. For those of you who have this problem, this might help...
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300433&lc=en&cc=us&dlc=en &product=407100

    HI,
    I take it you have actually checked that these contacts have Messages Enabled on their iPhones ?
    I find I can SMS my wife's iPhone when I am not on Wifi at work.
    However I don't get her replies back.
    I have a Pay as You Go contract  and have Data turned Off as the Carrier even charges for Location Services.
    I have a feeling that people not being on WiFi and not enabling SMS is part of the issue in these cases.
    10:06 pm      Monday; December 23, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Nokia Suite and Nokia 701 Cable Driver Problems

    Hi, I just bought a Nokia 701, and so far I love it, the only real problem I have is that I can't connect it with Nokia Suite through the provided cable, because the driver never get installed properly, everything OBEX fails to install.
    So the only real way I can fully connect my Nokia 701 with Nokia Suite is via Bluetooth, but the speeds are dramatically slower. So I'd like to know if there are others having this problem or if I'm the only one. And in case this problem is already known, will there be a solution for it soon?
    I also have a Nokia 5800 ExpressMusic and it has the same problem for ages. And it has never been solved, which I think it's pretty bad in a company the size of Nokia.
    Just to clarify I'm using Windows 7 at 64 bits, and the latest version of Nokia Suite (3.3), and I'm trying to connect a Nokia 701 and a Nokia 5800, and both get driver incompatibilities that can't be resolved by the automatic Windows 7 search, and can't be resolved by searching for it manually with Windows Update, Windows Compatibility Site says that Nokia 5800 ExpressMusic should be 100% compatible, but, maybe because of the fact that Nokia 701 is relatively new, there is no information on the Windows Compatibility Site, about the device.
    Please help me with this problem, it's very important for me to be able to connect both my cellphones via cable to the Nokia Suite application.
    A preemptive thank you for all your help.

    Hey Sevennikke7, Welcome to the Nokia Forums.
    To fix the problem, try the following solutions:
    disconnect the USB cable and connect it again.
    If you use a USB hub, try connecting the phone directly to the computer. 
    If you use a USB hub with an external power source, make sure that it has been switched on.
    Check the USB cable for problems and replace if necessary.
    If your phone asks you for the connection mode that you want to use, make sure that you select Nokia Suite(or PC Suite) on your phone.
    Disconnect the cable, restart the computer, and try again. 
    Keep in mind that if you remove USB devices without using the Safely Remove Hardware tool in the Windows taskbar, connection problems may appear.
    Go to Add/Remove Programs in Control Panel (called Programs and Features in Microsoft Windows 7).
    Select Nokia Suite in the list of applications and click Change/Remove.
    In the dialog that appears, choose Repair.Nokia Suite then check that all the needed files are intact and repairs any errors that were found. 
    Control Panel > Programs > Programs & features > Nokia Connectivity cable driver, right click and Change/Repair
    Try go Control Panel > View Devices > Remove your device profiles and reinstall them.
    As both devices cannot connect to your computer I believe it is a problem with drivers inside your PC.
    I hope this helps and you manage to resolve your issue. Please get back to me if your problem persists.
    Sheldrick
    Press the 'Accept As Solution' icon if I have solved your problem, Kudos my post if my advice has helped you!

  • Nokia 808 FP1 and Nokia 701 FP1

    hi
    i have nokia 701 with FP1 ...but i heard that there is differences between nokia 701 fp1 and the one in nokia 808 pureview like the text clock ,note widget and the new music player ...when this upates are coming for the nokia 701 ...And I didnt get the Skydrive update till now on my Nokia 701
    and thnx

    yeas,there a couple of minor differences between the 808 and 701 with the same os version.t hese are becuase the fp1 is specially built for the 808 while the devices like 7011 are g=not getting it out of the box rather they getting as an update.there are differences between updated os and built in os.those handsets,which get an os built in,have some features which are especially and exclusively made for them like the ones you've described whereas if some other device gets it too,it gets it as an addition;not a basic element.

  • How do I get iCloud to work with my mac that has snow lepard and is pre intel?

    How do I get iCloud to work with my mac that has snow lepard and is pre intel?

    Richard Kerns wrote:
    And it kills me that a friend who has pc computers and just has an iphone and ipad can breeze through all this with no problem and he still has XP.  So Apple goes back and helps old OS for pc but not for it's own kind!!!
    Richard, I agree with you 1,000%. I wrote this in a forum a few weeks ago, when a user was complaining about Snow Leopard not supporting iCloud:
    Why is it that if I bought a Mac before July of this year, I must pay to upgrade my operating system in order to take advantage of iCloud? Meanwhile, a Windows Vista SP2 user, who bought a new computer in May 2009, already has everything they need on their computer to use iCloud.
    Why was it possible for Apple to write a free iCloud Control Panel that was compatible with existing versions of Windows, but Mac users must buy an entirely new operating system?
    If Apple gave Mac users the same amount of backwards compatibility that it gives to Windows users, people with OSX 10.5 (Leopard) would be able to use iCloud. That's something to think about the next time you go to purchase a new computer.
    (P.S. Something else to think about: If you bought a Mac before October 2007 (when OSX 10.5 was introduced), your computer won't run iTunes 10.5 unless you buy an upgrade. But a PC user, who purchased their computer as long ago as Sept. 2004(!), can run iTunes without an OS upgrade.)
    I got so angry thinking about this, that I ended up writing an angry note to Apple on their feedback page. After repeating what I just wrote here, I asked them to commit to providing at least the same level of support to Mac users that they do for PC users when it comes to their cross platform products (iPhone, iPad, iCloud, Apple TV, Safari, iTunes, etc.) And, really, is that so much to ask?
    I wish I knew how to start a petition requesting that Mac users get comparable treatment as PC users. But then again, shouldn't that go without saying?
    Please leave feedback about this revolting double standard on the Apple feedback page. They should be thinking long and hard about why their own customers are treated worse than the customers of their competition.

Maybe you are looking for

  • Click a button in Safari using Applescript

    Hi, I've been dabbling in Applescript for the last few weeks and while I can make it perform some pretty complex workflows, I still have virtually no knowledge of how to make it interact with JavaScript, and it's an essencial part of a new, larger ap

  • Scrollbar problem with JTable.

    Hi, I have 45 columns in a JTable. Please remember this is customize, we can change the number of columns dynamically, at max they can be 2 columns. i was having a problem with display the columns names in my Frame. I posted at http://forum.java.sun.

  • My 5d Mark III raw files are showing up as CRAW2 not CR2?!

    I have tried resetting my camera settings to default, formatting the CF cards, using multiple card readers...nothing is working and I can't seem to find any information on what a CRAW2 file is. I have also tried using a DNG converter to convert the f

  • Bold text in mail subject

    Hi All, I want subject of mail  in bold text while sending mail from SAP.My mail send  in currently in RAW format . Please help. Thanks Mohit

  • HT5509 What is the guided acess pass code because I didn't set one....

    Okay so I put my guided acess on my iPod not knowing what it was and now I can't change apps.. What's the pass code because I didn't set one.