How can i use a code for an app in venezuela that was sent to me from the states?

Please my cousin sent me an app as a gift but when i try to download it pops a message that says that my code will work just for store in the us, does anybody knows how change that code or any other way to use it here in Venezuela? thanks a lot

As stated, that code will only work in the US App Store.  Ask your cousin to contact iTunes support, explain your situation and see if they can issue him a code that will work in the Venezuela store.
http://www.apple.com/support/contact/

Similar Messages

  • How can i change country code for a 3310 all in one? we have moved from Japan to Germany

    We have moved from Asia/Japan to Germany. I bought a set of new cartridges, which unfortunately are not accepted by the printer. Need help..... In the internet I found that I am not the only one to have this problem. As the printer is older than a year I either _ throw away.....or.....move back to Japan.   Both are not alternative. Can someone help. Need guidance on how to change the country code of the printer

    enno,
    Check out this post. It has some real good information about ink after moving to another country.
    http://h30434.www3.hp.com/t5/Ink-Toner-Cartridge-Printhead/Finding-and-installing-cartridges-after-m...
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

  • HT3354 how can i use one table for reference to another

    how can i use a table for a referance to another eg when i type a word in a cell, i will like it to match the word with another table then return the information in the cell i am using

    you can use vlookup() (or any of the lookup family of functions) to locate an item based on a key value:
    Here is an example of something you can do with two tables:
    The table on the right is title "Data" and stores a list of names with age and favorite color.
    The table on the left uses the value in the first column to lookup up information in the table Data
    in the table on the left:
    B2=IFERROR(A2&" is " & VLOOKUP(A2, Data :: A:D, 2, 0)&" years old and likes the color "& VLOOKUP(A2, Data :: A:D, 3, 0), "NOT FOUND")
    I know this look complicated.  so I'll break it up into smalled pieces:
    first the "&" is called the concatenate operator and joins two strings.  like this:
    a string is a set of characters between double quotes.
    so "string 1" & "string 2" becomes "string 1string2"  or "Sam " & "Jones" becomes "Sam Jones"
    you can use cell references instead of strings directly in which case the concatenation is performed on the contents of the cells.
    so if cell A1 contains "Hi " and the cell A2 contains "There"  then A1 & A2 will result in "Hi There"
    so you could add the formula
    A3=A1 & A2
    this is short hand for select cell A3 then type everything including the A3 so that A3 contains "=A1 & A2" (omit the double quote)
    OK.  So the formula I provided concatenates several items together:
    it concatenates A2, then the string " is " then a formula, then the string " years old and likes the color " then a formula
    the two formulas (highlighted in blue) perform a lookup of the value in cell A2 in columns A thru D of the table named "Data".  If if finds the value in cell A2 in the first column of the lookup range in the table Data (column A) then it returns the value from the same row but in the second or third column.
    all that is in a function calld iserror() to trap the condition where the calue you enter in A2 does not exist in the table Data:
    You will find the Numbers users guide and function reference helpful.  You can download then from Apple here:
    http://support.apple.com/manuals/#productivitysoftware

  • How can I use jbo:InputSelect for a char type filed?

    How can I use <jbo:InputSelect for a char type filed?
    I have two tables. One is room (primary key is room(type is char)), another table is responsibility (foreign ker is room(type is char)). Both tables have same length for room column.
    There is a problem:
    If I use (in the "DataEditComponent.jsp" file)
    <jbo:InputSelect multiple="false" datasource="dsEdit" displaydatasource="roomData" displaydataitem="ROOM" displayvaluedataitem="ROOM" ></jbo:InputSelect>
    to get the room input for responsibility from combobox(Datasource roomData is from room table). In the form the room field cannot bind the data in combobox, alway select the first item. And if I select one item and click the update button.There is an error message:
    Error Message: JBO-27010: Attribute set with value H409 for Room in Responsibility has invalid precision/scale
    I found If I changed the field type from char to varchar2 in database also change the entity objects, it works well. I wonder if there are any diffrence using <jbo:InputSelect tag in char and varchar2 type. How can I use <jbo:InputSelect for a char type filed as i don't want to change my datatype in database at this stage.
    I try this in JDeveloper 9.03, 9.034, 9.04. The result is the same.

    If I were in your shoes, here's how I would do it:
    <%-- Assuming you have dsRoom and dsResponsibility --%>
    <%-- Select is an HTML tag --%>
    <select name="ROOM" size="1">
    <% char roomID =""; // Init your character var
    // Open a rowsetIterator to get the records and add them to the LOV
    <jbo:RowsetIterate datasource="dsResponsibility" changecurrentrow="true" >
    <% roomID = (char)dsResponsibility.getRowSet().getCurrentRow().getAttribute("ROOM"); // Grab the char value
    // add the value to the LOV
    %>
    <option value="<%=roomID%>"><%=roomID%></option>
    </jbo:RowsetIterate>
    </select>
    If you are using this as part of an edit page you may want to utilize the "selected" option of the <option> tag. In one instance I am doing this on an edit page because the use may open an existing record. If I don't account for it, then it will change the DB to contain the first value from the list! You can do a simple check like:
    //Set the current record's char
    char curRecord = (char)rowEdit.getAttribute("ROOM");
    // inside the iterate:
    if (curRecord == roomID) {
    <option value="<%=roomID%>" selected><%=roomID%></option>
    } else {
    <option value="<%=roomID%>" ><%=roomID%></option>
    Hope that helps!

  • How can i watch native code for hashCode() in Object class?

    How can i watch native code for hashCode() in Object class?

    Those are two different requirements. You still haven't told us why you want the first one.
    The second one is called JNI - Java Native Interface. There is a forum here, and a large amount of documentation, and a book about it.

  • TS3988 It seams that i have another Apple ID, how can i use only one for everything?

    It seams that i have another Apple ID, how can i use only one for everything?

    http://support.apple.com/kb/HT5622?viewlocale=en_US
    -The specific point:
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    If you are wondering how using multiple Apple IDs relate to iCloud, see Apple IDs and iCloud.

  • My friend gave me ipod touch with all his accounts, i created new accounts but when i went on the appstore and tried to update apps installed by him,i was asked his account's password! i dont know his password.how can i use my account to update apps?

    my friend gave me ipod touch with all his accounts, i created new accounts but when i went on the appstore and tried to update apps installed by him,i was asked his account's password! i dont know his password.how can i use my account to update apps?

    You can't.  Apps and really all content purchased/downloaded through one Apple ID is forever tied to that Apple ID.  In the case of Apps they will always request that Apple ID to update as they are licensed to that Apple ID.
    In reality, the Apps were licensed to that Apple ID by the developer.  And cannot simply be given away to you for you to use.
    He should have wiped the iPod clean so you could set it up for your use without any of his accounts or purchased content as you are not really licensed to any of those Apps.
    Your friend should have followed this support document before giving the iPod to you:
    What to do before selling or giving away your iPhone, iPad, or iPod touch - Apple Support

  • How can I use apple mail (linked to gmail) and get it to only do autofill on the contacts that I have in apple address book?

    How can I use apple mail (linked to gmail) and get it to only do autofill on the contacts that I have in apple address book? Everytime I write an email on the Apple mail app (as well as in Gmail) it recommends a bunch of emails that are not my contacts. I want it to just autofill for the contacts that I have in my address book. Is this possible? Thank you. I have an Imac Intel version and an Iphone 5 phone.

    Mail > Window > Previous Recipients

  • How can I use Greek symbols in a text in Pages? Greek symbols are not in the special character list.

    How can I use Greek symbols in a Pages text? Greek symbols are not included in the special character collection.
    I need to import for example a sigma from Word or Adobe illustrator and then Pages can recognise it. I can not find it from within Pages.

    Special character palette from the edit menu does have sigmas under European ... > Greek ...
    You can do a search at the bottom of the Special Character palette. Double click on the greek capital letter sigma. You will get a lot of sigmas.

  • How can I use a gift card on App Store?

    How can I use a gift card on App Store?

    If it's an iTunes gift card, as opposed to an Apple Store gift card (which can only be used in Apple stores and the Apple online store), then you can redeem it onto your account : http://support.apple.com/kb/HT1574
    And as long as you are buying content for yourself (you can't use an account's balance for gifting content) then your balance should be automatically used for your purchases : http://support.apple.com/kb/HT5582
    When making purchases, content credits are used first, followed by Gift Certificate, iTunes Card, or Allowance Account credits; your credit card or PayPal account is then charged for any remaining balance.

  • How can I buy another "license" for an app I already have?

    How can I buy another "license" for an app I already have?

    I understand what that's like, believe me. And adding problems with an Apple product really adds insult to injury. Trust me, calling them when the lines are open will be really good. They're very nice, and from my own experience they've always found a solution for me. When you're frenzied it's sometimes nice to talk to a person instead of fill out a form. Refer to my post above for their number, but I don't think they open until 9 'o clock Pacific Time or something like that. Good luck!

  • HT204587 I can't use touch id for purchasing app from iTunes in India

    I can't use touch id for purchasing app from iTunes in India

    Hi Love Apple,
    If you are having issues with using Touch ID for purchases, you may find the following article helpful:
    iPhone 5s: Using Touch ID
    http://support.apple.com/kb/HT5883
    Regards,
    - Brenden

  • Can I use store credit for in-app payment ?

    Hi There
    Can I use store credit for in-app payment or do I have to use my credit card funds?
    Although I have enough funds as store credit, everytime I want to make an in-app purchase from my Iphone, it takes me to my credit card and ask to confirm my cc info
    Any ways to bypass this process ?
    Thanks

    Well i dont know if you can use store credit.....i was asking that questiob myself, but i guess if you didnt want it to take you to your credit card right away, you could delete your cc info off your apple id. I myself dont have a credit card listed.

  • How can I add a person to an event (and send that person an invite) without resending the meeting invitation to all participants?

    How can I add a person to an event (and send that person an invite) without resending the meeting invitation to all participants?

    Apple doesn't make it easy to do what you want.  However, here's how I do it. 
    Select the photo you want to move and create a new Event for it via the Event ➙ Create Event menu option.
    In the Event mode select the new Event with the one picture and drag it onto the Event you want to move the photo to.

Maybe you are looking for

  • Link Between AP_INVOICE_PAYMENTS_ALL and AP_PAYMENT_SCHEDULES_ALL

    Guys, I am new to Oracle Financials, can you please let me know if my understanding of link between AP_INVOICE_PAYMENTS_ALL and AP_PAYMENT_SCHEDULES_ALL is correct or not? SELECT ai.invoice_id , ai.invoice_num , aps.due_date , aip.accounting_date , a

  • As soon as i downloaded firefox, this "mozctl.dll" is not working. What do i do?

    I downloaded firefox 3.6 and tried to run another program. My computer said "mozctl.dll was not working. What do i do? == This happened == Not sure how often == I downloaded firefox 3.6

  • ESS Payslip : Error when creating a form

    Hi Experts, Please help me on this issue. The payslip is not getting generated in QA portal. I have checked everything, feature, report variant. The payslip is getting generated from the back end. But I have not checked from PZ11_PDF, becz of authori

  • Clear container element

    Hello guys, I need to clear one container element of one workitem. It's possible through SAP_WAPI_WRITE_CONTAINER or SWW_WI_CONTAINER_MODIFY? The function SAP_WAPI_WRITE_CONTAINER only insert one value in container element, but not clear. Any idea? T

  • Pre-Purchase Question, please...

    Dear Forum: I have all or most of the technical considerations answered, regarding my decision to purchase a new MacPro 2.8, 10 gig ram, three 750 HD running Logic8. The one final and perhaps just as important question is this: After viewing the MacP