Having loaded a gift voucher,how do I keep track of credit .

Having loaded a gift voucher can I view credit available after making purchases

If you are logged into your account, you can always see your remaining credit at the upper right of the iTunes Store page.

Similar Messages

  • How can I keep track of ans of quest ???? [Struts]

    hi,
    I am trying to develop Question-Answer pages using struts.
    The problem is when user selectes the right option(radio button) of different different quest. how can i keep track of these selected radio buttons ???
    I mean how can i trace the value of selected radio button corresponding to its quest. in my ActionForm and ActionClass.
    //loop for all questions
    <logic:notEmpty name="QUEST_LIST">
         <logic:iterate id="list" name="QUEST_LIST"  indexId="sno">     
         <tr>
              <td><%=(sno.intValue()+1) %>
              </td>
              <td> <bean:write name="list" property="QUESTION" />
              </td>               
         </tr>
         <tr>//loop for all options of corresponding question
    <logic:iterate id="OptionList" name="list" property="OPTION_LIST">
              <td> 
              </td>
              <td><INPUT type="radio" name="<bean:write name="list" property="QUESTION_ID" />" value="<bean:write name="OptionList" />">
                   <bean:write name="OptionList" />
              </td>
              </logic:iterate>
         </tr>     
         <tr><td> </td>
         </tr>
         </logic:iterate>
    </logic:notEmpty>Now my problem is in statement.....
    INPUT type="radio" name="<bean:write name="list" property="QUESTION_ID" />" value="<bean:write name="OptionList" />">
    if I hardcode the valueof "name" attribute then only one radio button is selected from all the question, so i created it dynamically using quesID.
    now its working fine only one radio can be selected for each quest. BUT how I set the values of these selected radio button in my ActionForm and get it into ActionClass
    I hope u understand what i am trying to say.....
    Please help me......

    hi,
    try "last" in the client's terminal. is this what you are looking for?
    cheers,
    Michael.

  • How do I keep track of dialog boxes?

    If I have a three question test, How do I keep track of the answers?

    OK a bit of sanity.
    you have a 3 question test.
    presumably you have a 3 element array of questions (Strings?)
    String[] questions = {"What is 1 + 1","What is 2 + 2","What is 3 + 3"};
    in a loop you ask each question, then get the response to each.
    String answer = .....readLine();
    if you change this to an object
    class Question
      String question;
      String answer;
      public Question (String q){question = q;}
    }then your array looks like this
    Question[] questions = {new Question("What is 1 + 1"), etc
    so now the display of the question changes from
    System.out.print(questions[x]);
    to
    System.out.print(questions[x].question);
    likewise for the answer
    from
    String answer = .....readLine();
    to
    questions[x].answer = .....readLine();
    now, in your Question array, each 'question' stores the answer received

  • How do I keep track of stats and subscriptions of my podcast? Mine was just added today.

    My podcast, The Big Seance Podcast, was just added to iTunes today. Other than keeping track of stats through my host (Libsyn), how can I keep track of subscriptions, ratings, and downloads through itunes? Thanks!

    Hi Patrick,
    You will not get any stats from Apple / iTunes.  You need to get that info from your libsyn account.
    If you want to see the number of people consuming via iTunes or the Podcasts App (AppleCoreMedia) - you will need to have the advanced stats - App 400 or greater level account in Libsyn.
    That is the only way to get the info you are looking for.
    Regards,
    Rob W

  • How does DIAdem keep track of which version is active when multiple versions are installed?

    I need a way to find out which version of DIAdem is active, without creating an automation reference. How does DIAdem keep track of this? I don't think it's through the registry as far as I can tell. Thanks.

    Hi,
    I'm not quite sure what you mean by "version of DIAdem is active". If you are trying to reference DIAdem from an external program, you will need to use an automation reference. Besides this case, I am not sure what you are referring to.
    Perhaps a short description of your application or intended use will help me point you in the right direction.
    Allen P.
    National Instruments

  • My IPad has been stolen and I was trying to track it on 'find my ipad' but the thief kept it offline. I just saw him change my user id. Any recommendations on how I can keep tracking the stolen device?

    My IPad has been stolen and I was trying to track it on 'find my ipad' but the thief kept it offline. I just saw him change my user id. Any recommendations on how I can keep tracking the stolen device?

    Yes, I filed police report, but there is nothing they can do until I get back to them on the tracking. It's been offline. I'm sure the whoever took it can find a way around breaking in the ipad..i really was hoping to get my pictures and videos of my kids back

  • Itunes has charged my debit card and my gift voucher, how do i go about getting a refund for the amount charged to my debit card

    I recently got a free £25 itunes gift voucher, i used it the other day and the amount was deducted off the debit card. Having looked at my bank statement i found that i had also been deducted the same amount of my debit card. Long story short, itunes has charged my gift voucher & my debit card. How do i go about getting a refund for the amount deducted on my debit card.

    If the page that you postted from doesn't help then you will need to try contacting iTunes support (you will need to give them as much of the serial number and activation code from the card as you can read) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • I have an iphone 3gs that i loaded ia gift card, how do i shift the gift card to a new iphone 4?

    I loaded a gift card on an iphone 3gs and bought a new iphone 4, how do I move the gift card to the iphone 4?

    You didn't load a gift card onto your phone. You loaded it to your iTunes account. Just make sure you use your existing apple id with the new phone. Don't create a new one.

  • How do I keep track of how many times a method is called inside anthr clas?

    I am writing code for a program that solves a Knight's Tour. A Knight's Tour is a path a Knight Chess piece can take around the board starting at any spot, touching every square once, and only once. I have to write 2 classes and one is provided. The provided class is encrypted and written by our professor. All I know that it does is simulates the game using the two classes I write and provides a print out and prompts to ask the user which square they want to move to next.
    The square class I have to write consists of a constructor that makes a square object that keeps track of its color (white/black) and its status (whether it has been visited, is occupied by the knight, or is free and has not be visited).
    The GameBoard class I have to write is what I am having problems with. I am writing a method that determines how many squares have been visited. The previous mentioned class that my professor wrote for me contains a method moveKnight();. The way the program works is that every time moveKnight() is called a square's status is changed to occupied and therefore visited later. moveKnight() will only work if the move requested by the user is a valid move.
    SO! My main problem (sorry for all the explaining, just trying to give you all the information) is that I don't know how to keep track of how many times moveKnight() is called by the program. If i can figure this out it should be simple. I'm new to java but i believe...
    if(moveKnight() is called)
    {count++;} //count is a member variable already initialized
    return count;
    the moveKnight() is called section within the if() statement is what I am unclear how to do. Please help.
    Thanks, Veritas

    in your case you want 'count' to be a class attribute rather than a local variable. But yes, incrementing it each time that the method is called will serve your purpose.

  • HT204053 how do i keep track of my stolen iphones location?

    I useed the find my phone app and was able to locate my iphone yesterday. I made it make a noise, put it in lost mode and then i erased. I recieved four mails  want toiApple giving me proof of what I had already sone to my iphone but I wanted to keep track of my phone and I  dont know how  or where to start again. Please help...

    Once you selected ERASE, you eliminated the ability to track the device.  Sorry.

  • How do I keep track of when a signal hits a certain voltage?

    I am fairly new to Labview, and I am having trouble with the following.  I am working on replacing a Digital Vector Filter with Labview software.  I have a rotating shaft with eccentricities, which are measured by X and Y proximitors.  Also, a keyphasor voltage keeps track of the rotation rate, which enables me to relate X and Y to each other. Essentially, I have to find when the keyphasor voltage hits -11 volts, and keep track of when that happens, then, keep track of the next time that happens, in order to get the time it takes for one revolution. I don't know if this makes a difference, but the data is coming in as dynamic data.  I want to be able to tell the user what the rotational rate is as the program is running.

    Thanks for the help!
    I have taken the vi you gave me and changed it to a bit.  The voltage going in is being sampled rather quickly, and thus there is no actual point that equals -11 Volts. I want to do something like the following: Check timer time, tm, and check:
    if tm-1 > -11 Volts   and tm < -11  
    do the following calculation to get the actual value time that voltage crosses -11 Volts, tk.
    tk= (tm-1) + (  (tm- (tm-1)     ) / ( Km - (Km-1)  ) )  *  (-11-(Km-1)),      where Km is the voltage at tm.
    I want to be able to do this streaming, to show the user what the tk value is live.  The only times I really need to save are tm and tm-1, from there I can save all the tk's in an array for further analysis.
    Please let me know if this is possible.
    Thanks 
    Attachments:
    keyphasordata.xls ‏1773 KB
    Barebones.vi ‏90 KB

  • How can I keep tracks playing when I'm browsing?

    There must be an obvious answer to this question, but I don't know what it is.
    If I'm playing an album, but then start to browse somewhere else (as one would do if listening to a CD), the music will stop after the track has finished, and not go on to the next track. (because the tracks are no longer in the browser window)
    How can I keep playing what I want, in the order that I want, while I am browsing other music?
    Thanks

    I find this to be a problem as well, especially since I know I was able to work with iTunes this way before I installed iTunes 7.3?
    I'm reading some other posts which suggest that being able to play tracks from an library subset (genre, album, artist) AND browse other playlists at the same time was never a feature of iTunes.
    Since I know I'm not imagining that I used to use iTunes quite happily, I'm wondering is there an option in 7.3 that I'm not paying attention to?
    It seems crazy not to be able to do this.

  • How do I keep track of data usage on the iPhone 5C?

    I just purchased an iPhone 5C (my first smartphone), and I'm confused as to what exactly the GB information in the "Usage" menu under Settings-->General-->Usage means. Are those gigs that are listed how much I have used and available for storage ONLY, or does it also include LTE data usage? I just synced my phone with my iTunes library on my computer, and my "GB used" jumped from 1.0 to 6.3 GB. It seems to be under the heading "storage" and says I still have 7.0 GB available, so I'm inclined to think that it is only counting what I am actually storing on my phone, but if that is the case, then where can I check how much of my data for the month I have used? I am on a family plan, so I want to make sure I'm not accidentally driving our usage up. My Wifi connection at home is currently out, so I know I was using some LTE this morning, but I don't think it was very much. I figured out how to turn off LTE and 3G so I'm not accidentally using data now, but in any case, does anybody know where I can find my data usage info on my phone?
    Thanks!

    Under the Collection button you can add as many collections as you want. 
    I created one called "Reading".  I then move the book(s) I am reading into that collection so I can just go to there to find my current books.
    I also created one called "Complete" so I can remember which ones I can uncheck from iTunes. 

  • HT201398 How do I keep track of support?

    Ok so my email is closin within seconds......tried everythign but I dont want to pay £25 just to find out why!  Posting on here is a good idea but how do I know if someone has responded?  Or even how to find the thread again.....

    Templeton Peck wrote:
    Siawa098890 wrote:
    Help me sir
    Help you with what?  Learning how to use an online forum?
    It's so easy, even a Muppet™ can do it!

  • How do I keep track of and see my rollover minutes?

    My billdate just turned over but when I go to AT&T's site or go get my minutes on my iPhone, it just says 450. I know I had about 100 rollover minutes from last month. How do I see them?

    I had the exact same situation... I tried to check on line and via the text message sent by AT&T. It was the day or day after my bill cycle date, no rollover minutes showed up. I called AT&T CC and they said it would take 48-72 hours for the rollover minutes to show up. They are there so if for some reason you go through all your anytime minutes you are still able to access rollover. Just as they told me, the next day I was able to see my rollover minutes on line and via text. Don't worry as I did... they'll be there!

Maybe you are looking for