How can I take my credit card information out an just use app cards

How can I delete my credit card informations an just use app cards

iTunes Store: Changing your payment information
http://support.apple.com/kb/HT1918
iTunes Store Accepted Forms of Payment
http://support.apple.com/kb/HT5552
By app card, I asume you mean a Gift Card.
Redeeming iTunes Gift Cards and content codes
http://support.apple.com/kb/ht1574
 Cheers, Tom

Similar Messages

  • How can you take off credit card of you account?

    I can't take this off how can I take this credit card off my account?

    You can still remove a credit card from an account on an iPhone
    just open the App Store
    select featured
    scroll to the bottom and select "Account: accountnamehere"
    now you can proceed to edit your information

  • HT204266 How can I remove my credit card from payments and just use iTunes cards

    I'm trying to change my payment information to no credit card and just use iTunes cards but the none option isn't there anymore. I have already purchased an iTunes card and entered it into my account so why is this not working?

    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    iTunes Store Accepted Forms of Payment
    http://support.apple.com/kb/HT5552
    By app card, I asume you mean a Gift Card.
    Redeeming iTunes Gift Cards and content codes
    http://support.apple.com/kb/ht1574
     Cheers, Tom

  • HT2534 how can I take my credit card information off the ipod?

    I already entered my credit card and my son has been downloading apps that are not free....how can I block it or remove my credit card?

    - You can try:
    iTunes Store: Changing Account Information
    However, some users have reported the inability to remove a credit card.
    - You can change the password for your account.
    - You can also turn on Restrictions for purchasing apps and making in-app purchases. See:
    iOS: Understanding Restrictions

  • HT1918 How can i take a credit card off my itunes account?

    I cannot update any of my apps on my iPhone because it says there is a billing problem with a recent purchase. I've never purchased anything on my iPhone from the app store, but i have entered a credit card number on it. I was wondering how to get on my iTunes account and remove the credit card from it, so that i can update all of my apps.
    Would removing the credit card fix the problem? And if so, how do i do it?

    Computer -
    iTunes - Opened
    Store - Which is located at the top left
    View Account - Enter your Apple ID password [If prompted]
    Billing Information - Click Edit
    iOS Device -
    Settings
    iTunes & App Store
    View Apple ID
    Aaccount
    Message was edited by: justquessing

  • How can I take data from specific column in a table using VBA

    Hi
    I do not know how to take the values from the last column in a table, I know how to look over each row but I cannot take the last column values for each row I pass by.
    This is the table for example:
    | Date | Account1 | Account2 | Description | Amount |
    |12/03/2008 | 123-32 | 325-78 | None | $50 |
    |12/03/2008 | 123-32 | 325-78 | None | $20 |
    |12/03/2008 | 123-32 | 325-78 | None | $10 |
    |12/03/2008 | 123-32 | 325-78 | None | $40 |
    I am using this code as a reference that User FiveNines gave me to loop through all the rows in the table, so What I need is to take the values of the column Amount for each row I go through.
    Private Sub RSWVBAPage_afterPlay()
    Dim tbl As HTMLTable
    Dim tblRow As HTMLTableRow
    Dim tblCell As HTMLTableCell
    Dim strValue As String
    Dim rButton As HTMLInputElement
    ' ******** This would be your global variable. I put this so that values are seperated by a semicolin you can use what ever format works for you.
    strValue = "03/22/2008;03/22/2008;*************1977;*************1977;$25.25;Jan, Jun, Jul, Dec"
    ' Strip out the ; for inner text comparison
    strValue = Replace(strValue, ";", "")
    ' This will get the table but can be modifoed to be more specific
    Set tbl = RSWApp.om.FindElement(, "TABLE")
    ' This loops through all the rows in the table until a match to the strValue is found
    For Each tblRow In tbl.rows
    If tblRow.innerText = strValue Then
    RSWApp.WriteToLog "Tables", "Passed", "Row is Present", True
    End If
    Next
    End Sub

    Hi Lippix.
    This is code that will loop the rows then loop the cells and check for "$" which will return dollar values. I also attached a script.
    Private Sub RSWVBAPage_afterPlay()
    Dim tbl As HTMLTable
    Dim tblRow As HTMLTableRow
    Dim tblCell As HTMLTableCell
    Dim strValue As String
    ' This will get the table but can be modifoed to be more specific
    Set tbl = RSWApp.om.FindElement(, "TABLE")
    ' This loops through all the rows in the table until a match to the strValue is found
    For Each tblRow In tbl.rows
      For Each tblCell In tblRow.cells
      ' cycle through the cells and only report those with a dollar value by searching for $
        If InStr(1, tblCell.innerText, "$") <> 0 Then
       RSWApp.WriteToLog tblCell.innerText
       End If
      Next
    Next
    End Sub

  • How can I take advantage of the SPDIF out..?

    Hi all, as my subject says, can anyone recommend the best setup where i can take advantage of the spdif output in my imac?  I am setting up pro tools and/or logic 8 and want high fidelity sound i can with this great machine .
    Links with info would be great, I basically want to send the digital signal into to Yamaha self powered studio speakers.
    Is there a cable I can purchase by itself?
    Thanks for any help in advance.

    The cables can be found most anywhere.  For cables and adapters I always recommend searching www.monoprice.com first.  They have high quality cables for very good prices.  As an example search for TOSLINK at their site to find optical cables and related components.  It's where I got mine.

  • How can i take the number of a random process to use it in math´s and show the solution to the user?

    i wrote this function and i try to show the number of seconds the user was to early or to late to click the stopbutton to the user.
    its about to hit stop intuitiv while in the background ther is a random number already made but the user dont know or see it.
    the eyes opens in a random between 100 and 40000 millisec. if they open up the user should click stop without seeing them. so its intuitiv.
    i just tryed.
    this code is on the mc with the eyes to let them open randomly. it is on the second frame at the main time code. 1st frame is the start button and a small description. on the second the stop button and the closed eyes with the script down here as i already said. and on the 3rd frame is the end wher it should be shown to the user. thats how i tryed. please let me know any suggestions and or other solutions to my problem! If you need to see my flashfile to help me just let me know. i send it to you or something :-)
    mic(at)hellrec.at
    function randomRange(minNum:Number, maxNum:Number):Number
        return (Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum);
    var myTimer:Timer = new Timer((randomRange(100, 40000)),1);
    myTimer.addEventListener(TimerEvent.TIMER,openeyes1);
    myTimer.start();
    var duration:uint = getTimer();
    function openeyes1(e:TimerEvent):void {
    gotoAndPlay (26);
    e.updateAfterEvent();

    to save the number use:
    function randomRange(minNum:Number, maxNum:Number):Number
        return (Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum);
    var randomNum:Number= randomRange(100, 40000);
    var myTimer:Timer = new Timer(randomNum,1);
    myTimer.addEventListener(TimerEvent.TIMER,openeyes1);
    myTimer.start();
    var duration:uint = getTimer();
    function openeyes1(e:TimerEvent):void {
    gotoAndPlay (26);
    e.updateAfterEvent();
    p.s. please mark helpful/correct responses.

  • Superdrive - How can I tell if its broken or I'm just using it wrong?

    I've had my Quad PPC G5 for a while now, and the Superdrive has always been flakey...
    When I try to burn my vids using DVD Studio Pro mostly (but other software is used), it says it burns, but when move it to other machines or my TV, the vids freeze midway... When i copy the files to my PC and burn from there using Roxio, it burns fine & plays fine... I'm afraid to use the Superdrive now as I've given my stuff to people and they can't play it..
    I also have problems ejecting discs once theyre in the drive...If i have nothing in there, eject works fine, but if i put discs (any discs) in there, I have to reboot and hold down the eject button to get them out...
    I have AppleCare, but before i call, I'm hoping it is just a matter that I;m doing something wrong or using cheap DVDs (Generic DVD-R's 16X speed)... Buit that wouldn't explain away the eject issue...
    Any ideas? Thanks!

    Hi James-
    Here's the info on your drive (performance review):
    http://www.cdfreaks.com/reviews/First-look-LG-GSA-4165B-DVD-Burner/1st-look-conc lusion.html
    The maker is LG- typically receives good reviews.
    I notice that you are running OS 10.4.6. How long has it been since you did a system reinstall? With regard to the eject function, it could very well be that you have some corrupt files within the OS. Could be that a repair with Disk Utility could help. Beyond this, an Archive and Install may be useful, followed by (preferred) a clean system reinstall. A simple re-update might be all that is needed.....
    But, since the drive has displayed the problem from the beginning, it does tilt the balance towards a hardware problem. Having said this, depending on the original OS version (10.4.2?), and the update history, the problem could lie within the firmware, or, system software.
    Does the problem occur in a different user account? Setting up a second user account, with Admin privileges, is a good trouble shooting technique. If no problem, then it is in your account only. If the same, the saga continues.......
    So- first, I would run Disk Utility (booted from install disk) and repair the hard drive. I would also repair permissions. Following this (after testing the drive) I would try a re-application of the 10.4.6 Combo Update:
    http://www.apple.com/support/downloads/macosx1046comboforppc.html
    Should this fail, I think I would be inclined to use my Applecare.
    As for the disk reading and writing- take note of the makers that are listed on the bottom of the review (1st look conclusion) page that I linked. Can't go wrong with them. Also, look at user responses on the following (select format):
    http://www.cdfreaks.com/media/
    G4AGP(450)Sawtooth, 2ghz PowerLogix, 2gbRAM, 300gbSATA+160gbATA, ATI Radeon 9800   Mac OS X (10.4.8)   Pioneer DVR-109, ExtHD 160gb x2, 23"Cinema Display, Ratoc USB2.0, Nikon Coolscan

  • How can i remove my phone number from imessage and just use email address ?

    Hi all
    I've searched all the forums and still can't find an answer for what i need (what i think i need!)
    I have an iphone without a data plan so whenever anybody who is registered with imessage sends me a message i will not
    receive it until i am back on wifi.
    What i want to achieve is to be able to receive sms messages from imessage users when i am not on wifi and then imessages when i am back on wifi.
    My assumption is that if i can unlink my mobile number from iMessage and only have it associated with my email address that this should work, but i cannot seem to remove my phone number from imessage, in the settings > iMessage > send and receive it will allow me to un-tick the associated email addresses but my phone number is greyed out and will not allow me to untick.
    On my home Mac i can go into messages app and deselect the phone number but not on the iphone.
    One solution says to deregister my phone on https://supportprofile.apple.com/ which i have tried (i can't see how that would work anyhow as there is no phone number in that registration)
    Any advice would be greatly appreciated,
    thanks, Andy

    Regardless if using your cell phone number or your Apple ID email address, iMessage requires an internet connection via an available wi-fi network or via your carrier's cellular network. Without a data plan and no internet access with your carrier's cellular network, an iMessage addressed to your email address can be received only when your iPhone is connected to an available wi-fi network no different when an iMessage is addressed to your cell phone number.
    You cannot deselect or remove your cell phone number below you can be reached by iMessage at with iMessage on an activated iPhone. The iPhone's phone number is activated along with your Apple ID.

  • How to I take my credit card information off and put no payment info like back how it first started, and how do I do that by my iphone?

    I need help,
    How do I take my credit card information off and put none payment
    And how do that by my iphone. With out using a computer.
    Because when I use my credit card and I know I have money on it
    It says decline so I wanna take that off so I can download apps without using
    My card or an iTunes card. Like down load the free apps without card info.

    Hi ShyGirl07,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    I hope this information helps ....
    - Judy

  • HT1918 Hi, I have registered at apple site, and i have submitted the credit card information, they deducted some ammount without my permission, why they did that? how can i remove my credit card details from that site or deactivate my account?

    Hi, I have registered at apple site, and i have submitted the credit card information, they deducted some ammount without my permission, why they did that? how can i remove my credit card details from that site or deactivate my account?

    From that HT3702 page :
    If you update your billing information, the iTunes Store or Mac App Store will place an authorization hold on your payment card account, usually in the amount of 1 USD or the local currency equivalent, to verify your account information.
    You might see authorization requests on your online statement. These requests aren't actual charges; they are tests to confirm that your payment card account is active and has available funds to accommodate transactions. Authorization holds are removed by your financial institution shortly after your purchase clears. The time it takes to remove authorization requests varies by financial institution.
    The number of days that it takes to diappear varies by bank, but it's usually a few days - though with the weekend coming up it might take an extra day or two

  • How can I take out my credit card number from purchasing anymore app

    How can I take out my credit card number from the App Store to prevent purchasing anymore apps

    How to Get Apps From the App Store Without a Credit Card
    http://ipadhelp.com/ipad-help/how-to-get-free-apps-from-the-app-store-without-a- credit-card/
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    http://support.apple.com/kb/ht2534
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    If None is not available - On your computer launch iTunes and click “iTunes Store” in the left navigation pane. Click the “down arrow” next to your name at the top right side of the page and click “Account.” Enter your username and password and click “View Account” to log into your account information. Next to your Payment Type, click “Edit.” Select the “None” button and click “Done.” Confirm that your card has been removed by returning to the Apple account information screen. Under Payment Type, it should say that there is no credit card on file.
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    iTunes Store Accepted Forms of Payment
    http://support.apple.com/kb/HT5552
     Cheers, Tom

  • How can I remove wrong credit card information from my apple I'd account

    My old credit card information is stuck in my apps store and I can't install free apps because its telling me to update the cc info but I don't have new info I just want to delete it

    This will only work if he has an unpaid order, and we don't know how much the order is for. There are also 100 & 1 other reasons, which will not be fixable by GCs.
    Time for
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • How can i take off a credit card from my apple id

    How can i take off my credit card from my apple id

    go to iTunes
    open iTunes Store
    scroll down to settings>Account
    enter the password
    edit the credit card no (delete it)
    click finish

Maybe you are looking for