New and confused.. I need help please

Good morning
I just got my iphone 4S, and I'm struggling with the App Store billing.  I've downloaded whatsapp, and it asked me for billing info, so I've put my husband's credit card details on there.  Now, I need to update Facebook and it gave me a message that there was a problem with the previous billing info, but I don't have a credit card and would like to use my cellphone account (Cellc) to pay (IF I ever decide to actually buy something from there), but there is no such an option, only Visa, Amex and another credit card (most people I know uses their cellphone account).  Even when I log in to icloud or even here, it shows my husbands name and not mine.  How on earth do I change this?

Well, never living in South Africa, I don't know how you pay for things, but in Europe, Japan, USA, Canada, and Australia, (and living in most of those places), credit cards are the normal way of doing things.
At least here in the USA, you can use PayPal on iTunes. PayPal is in South Africa, so if it you can set that up, you can use it. If you set up a new credit card or PayPal then you can use another name.
However, it's not all that relevant. I do not believe the name shows up anywhere, except when you buy things. Your apple ID is the only thing that matters, and you can make that whatever you want. If you put Facebook on your iPhone, you're going to be entering your Facebook ID, not anyone elses.
Really, don't worry about any of this.

Similar Messages

  • I'm new and I REALLY need help

    Hi, my name is Chris, I'm new to java.sun.com and I'm a beginner programmer seeking a degree in Comp Sci. I've been writing some code and I've stumbled on some problems that I can't troubleshoot, (run-time?) error seems to be way over my head, the program should work, i don't know why not? Can someone please please give me a clue as to what's going on?
    Here's the program;
    I have to greate a Coins class that will define the different coins (dime, nickelsk, etc.) that will be used in the main .java file. The main .java file has to randomly generate some "change" and sort it out in the least amount of coins possible.
    The problem:
    There are no compilation errors; however, when I run the program I receive this run-time error:
    Exception occurred during event dispatching:
    java.lang.NullPointerException
         at cs130project3.Project3.paint(Project3.java:48)
         at sun.awt.RepaintArea.paint(RepaintArea.java:298)
         at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:196)
         at java.awt.Component.dispatchEventImpl(Component.java:2663)
         at java.awt.Container.dispatchEventImpl(Container.java:1213)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
    What does this mean?
    Some things I've tried are sticking a g.drawOval() into the paint method, it works just fine, so i assumed there must a problem passing the g object into the coins.draw(g) method, is there a file placement problem or an object passing problem? I'm using Borland JBuilder 7 and i'm assuming that it places the files in the right location, its all in a package called cs130Project3.
    Here is the code:
    Coins class:
    import java.awt.*;
    public class Coins {
    private final int DIAMETER = 30;
    private int coinsAmount = 0;
    private String coinsType = "";
    private int coinsPosX = 0;
    private int coinsPosY = 0;
    public Coins(int coinAmount, String coinType, int coinPosX, int coinPosY) {
    coinsAmount = coinAmount;
    coinsType = coinType;
    coinsPosX = coinPosX;
    coinsPosY = coinPosY;
    public void draw(Graphics screen){
    for(int i = 0; i < coinsAmount; i++)
    screen.drawOval(coinsPosX,coinsPosY,DIAMETER,DIAMETER);
    coinsPosX += 5;
    coinsPosY += 5;
    if(i == (coinsAmount - 1))
    screen.drawString(coinsType,(coinsPosX+10),(coinsPosY+10));
    Here is the main class:
    import java.awt.*;
    import java.util.Random;
    import java.applet.Applet;
    public class Project3 extends Applet {
    private Coins Pennies, Nickels, Dimes, Quarters;
    public void init() {
    int randomChange = 0;
    int numPenny = 0, numNickel = 0, numDime = 0, numQuarter = 0;
    String Penny = "1c", Nickel = "5c", Dime = "10c", Quarter = "25c";
    Random generator = new Random();
    randomChange = generator.nextInt(100);
    while(randomChange > 0)
    while(randomChange >=1)
    while(randomChange >= 5)
    while(randomChange >= 10)
    while(randomChange >= 25)
    numQuarter++;
    randomChange -= 25;
    if(randomChange >= 10)
    numDime++;
    randomChange -= 10;
    if(randomChange >= 5)
    numNickel++;
    randomChange -= 5;
    if(randomChange >= 1)
    numPenny++;
    randomChange -= 1;
    } // End while loop
    Coins Pennies = new Coins(numPenny,Penny,10,10);
    Coins Nickels = new Coins(numNickel,Nickel,100,10);
    Coins Dimes = new Coins(numDime,Dime,150,10);
    Coins Quarters = new Coins(numQuarter,Quarter,200, 10);
    public void paint (Graphics g)
    Pennies.draw(g);
    Nickels.draw(g);
    Dimes.draw(g);
    Quarters.draw(g);
    help me!!
    Thank you,
    Chris

    Chris, I can't even compile your stuff because you didn't post all your classes (Coin is missing), but the runtime error is telling you a lot:
    java.lang.NullPointerException
    at cs130project3.Project3.paint(Project3.java:48)It says you're dereferencing an object that's null at line 48 of your Project3 class. Turn on line numbering in your text editor, go to line 48, and see what you've missed. One of your objects wasn't initialized. I'll bet you declared a reference type in a class but never initialized it properly in a constructor. The JVM will set those references to null unless you provide a value. - MOD

  • New hard drive issues - need help please!

    So I just installed a new hard drive on my Ideapad S10 and having the following issues.  I get a PXE-E61 : Media test failure check cable & PXE-M0F : Exiting  Broadcom PXE rom message.  I've uninstalled and reinstalled the drive to check the connection and still get the error, it's a brand new drive.  Also I noticed in the BIOS that the hard drive is showing up under ssd disk and SATA hdd shows - none.  If I restore the BIOS settings to original then the drive will show up under ssd but the SATA controller mode will show the AHCI setting instead of the Compatible setting it should use.
    I'm really stuck here and don't know what else to check.  My orginal drive is dead so I'm trying to get this working so I can install windows.  If anyone could help out it would be greatly appreciated - Thanks!

    Full Disclosure:  I don't know your machine.
    That PXE error probably doesn't indicate a problem - or not the problem, anyway.  Your machine boots, doesn't see an operating system on the hard drive (or doesn't see a hard drive at all) and tries to boot over the network and fails. That's what the PXE error is about.
    As to the SATA problems, what happens when you boot your Windows install media?  Does that see a hard drive?
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Internet and emails- i need help please!

    hi,
    when i try to get onto the internet on my phone via wifi a message comes up saying 'unable to connect to the internet, please try again later. if the problem persists contact your service provider.' this has been happening for the last three days.
    also, i cannot open an email account, it says something about a enterprise account but i dont know what this means.
    if somebody could help me that would be extremely appriciated!!
    many thanks.

    give your carrier a call and enquire what blackberry packages they offer on PAYG

  • Something is not letting me connect with adobe for help,its controllig my browser and keyboard,i need help please.

    @

    yes I was trying to shart and trying to connect,but I couldn't,something wont let me,its keeping me away from adobe,it don't want adobe to help me,if possible please help me,thanks hasmat ali.
    Sent from Windows Mail

  • Issue with 2504 WLC and 2602 AP. need help please.

    Somehow the AP does not associates with the 2504 controller.
    What could possibily be the issue.
    Thanks in advance.
    Anyway,  Here is the log from the AP.
    AP log
    ===========================================================
    *Mar  1 00:30:35.551: %CAPWAP-5-DHCP_OPTION_43: Controller address 192.168.120.4 obtained through DHCP
    *Mar  1 00:30:35.551: %CAPWAP-3-ERRORLOG: Did not get log server settings from DHCP.
    *Mar  1 00:30:44.551: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-CAPWAP-CONTROLLER
    *Mar  1 00:30:44.551: %CAPWAP-3-ERRORLOG: Discovery response from MWAR 'SNGNY-WLC1'running version 7.0.220.0 is rejected.
    *Mar  1 00:30:44.551: %CAPWAP-3-ERRORLOG: Failed to decode discovery response.
    *Mar  1 00:30:44.551: %CAPWAP-3-ERRORLOG: CAPWAP SM handler: Failed to process message type 2 state 2.
    *Mar  1 00:30:44.551: %CAPWAP-3-ERRORLOG: Failed to handle capwap control message from controller
    *Mar  1 00:30:44.551: %CAPWAP-3-ERRORLOG: Failed to process unencrypted capwap packet from 192.168.120.4
    ===========================================================
    show version output from the Access Point
    =========================================================
    AP0006.f6ec.be2a#show ver
    Cisco IOS Software, C2600 Software (AP3G2-RCVK9W8-M), Version 15.2(2)JB, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2012 by Cisco Systems, Inc.
    Compiled Tue 11-Dec-12 00:07 by prod_rel_team
    ROM: Bootstrap program is C2600 boot loader
    BOOTLDR: C2600 Boot Loader (AP3G2-BOOT-M) LoaderVersion 12.4(25e)JA1, RELEASE SOFTWARE (fc1)
    AP0006.f6ec.be2a uptime is 33 minutes
    System returned to ROM by power-on
    System image file is "flash:/ap3g2-rcvk9w8-mx/ap3g2-rcvk9w8-xx"
    Last reload reason:
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    --More--
    *Mar  1 00:33:46.071: %CAPWAP-3-ERRORLOG: Invalid event 38 & state 2 combination.
    *Mar  1 00:33:46.171: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 192.168.120.98, mask 255.255.255.0, hostname AP0006.f6ec.be2a
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    cisco AIR-CAP2602I-A-K9    (PowerPC) processor (revision A0) with 180214K/81920K bytes of memory.
    Processor board ID FGL1704ZC0Q
    PowerPC CPU at 800Mhz, revision number 0x2151
    Last reset from power-on
    LWAPP image version 7.4.1.37
    1 Gigabit Ethernet interface
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: 00:06:F6:EC:BE:2A
    Part Number                          : 73-14588-02
    PCA Assembly Number                  : 800-37899-01
    PCA Revision Number                  : A0
    PCB Serial Number                    : FOC165188Y4
    Top Assembly Part Number             : 800-38356-01
    Top Assembly Serial Number           : FGL1704ZC0Q
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-CAP2602I-A-K9  
    Configuration register is 0xF
    ========================================================

    Blake's right.  Your WLC is running 7.0.X code which does not support the AP2600.  Check the Release Notes and look under Software Release Support for Access Points to determine what suitable firmware your WLC can support your AP.

  • New beginner with iTunes need help please!!

    When i am trying to open iTunes this is the message that has been brought up has anyone had the same problem and who knows how i could fix this problem??
    Error Signature
    AppName: itunes.exe AppVer:7.0.2.16 ModName: unknown
    Reporting Details
    This error report includes; information regarding the condition of iTunes when the problem occurred the operating system version and computer hardware in use; Digital Product ID, which could be used to identify your license and the Internet Protocol (IP) address of your computer
    We do not intentionally collect your files, name and address or any form of personally identifiable information. Etc etc
      Windows XP  

    Dougal95 wrote:
    The list doesn't say which one is in which format.
    IN the iTunes menu, click on View, then View Options, and check the "Kind" box. This will display the Kind for each track. if it says "MPEG Audio File," it's an MP3.
    Should all my MP3 files be converted to simplify things.
    No need to convert any music. iTunes can play MP3s.

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • DOES ANYONE KNOW HOW I CANT DELETE MY APPLE ID I JUST GOT A NEW AND NO LONGER NEED THE OLD 1 HELP PLEASE

    DOES ANYONE KNOW HOW I CANT DELETE MY APPLE ID I JUST GOT A NEW AND NO LONGER NEED THE OLD 1 HELP PLEASE

    As far as I know they can't be deleted, just remove any personal info from it (credit card details etc) and stop using it.
    If you downloaded any content via it then you will need to remember it and it's password, as content is tied to the account that bought/downloaded it, so if you move to a new computer you'll need to authorise the account on it if you want to use any of its content there (or if you bought apps with it you'll only be able to download updates to them via that account)

  • Bought a new macbook and want to manually manage music onto my iphone 4s but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Bought a new macbook and want to manually manage music onto my iphone 4s (as it is already full of music from old windows laptop) but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Before you sync your iPhone make sure that all the music that was synced to your phonereviously has been copied to your iTunes on the new MacBook Pro. Then when you connect your phone you will be able to either sync all music or select only those playlists that you want on the phone.

  • After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.

    After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.Urgent.TQ

    Izit software or hardware? Confuse:(
    Only can use wifi now.
    Any way thanks guys for ur suggestion:) amishcake and simes

  • Hi! My notebook had to be fixed and I lost everything. I´ve downloaded iTunes and, of course, it´s empty. What happens if I sync my Ipod nano? Will I loose all music that is in my ipod? Need help, please! What should I do to keep my music?

    Hi!
    My notebook had to be fixed and I´ve lost everything. I´ve downloaded iTunes and, of course, it´s empty. What happens if Isync my Ipod Nano? Will I loose all music that is in my Ipod? Need help, please! What should I do to keep my music? What should I do to transfer the music in the Ipod to itunes?
    Thanks!!!

    How to use your iPod to move your music to a new computer

  • HT1212 My Ipad is disabled by wrong password and I have tried to reset and restore a few times with no success. Now I-tunes won't even recognize the I-pad in recovery mode. I need help please.

    My Ipad is disabled by wrong password and I have tried to reset and restore a few times with no success. Now I-tunes won't even recognize the I-pad in recovery mode. I need help please.

    If the iPad was running iOS 7,  iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • HT1222 I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I got it figured out myself... yaaaaay for me!

  • HT4314 Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game.

    Contact iTunes
    Contact iTunes

  • Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can se

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. When I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game. 

    Hello Vaidas Vaidas,
    It sounds like you are noticing someone else is accessing your Clash of Clans data by playing the game and you have tried to reset your Apple ID password. If you are following the steps outlined in this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    What is preventing you from changing your password? Any error messages or prompts?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

Maybe you are looking for