Help Transfering Money in Account Class

Hi, i had a task where i have to add some feature to a account class. I have done the first two (checking if in credit, and applying a credit charge) but i am having trouble with the transfer one. Money has to be transfered from "from" to the account. The tip says the following.
"Send the message to withdraw to the object passed as a parameter. Then you will need to add the withdrawn amount to the balance in the current account. Remember the object from is a seperate account and is passed by reference. Consequence of passing the handle to the object by value. So that all changes made to the formal parameter from are made to the actual object that is passed."
My question is that how do i set up the reference to the account from, as i am unsure how to, as how i have it at the moment is just withdrawing from the current account? Also at the moment i have
"getBalance()=getBalance()+amount;" why will it not allow this as they are all double?
Super class
class Account
  private double theBalance    = 0.00;   // Balance of account
  private double theMinBalance = 0.00;   // Minimum bal (Overdraft)
  public double getBalance()
    return theBalance;
  public double withdraw( final double money )
    assert money >= 0.00;
    if ( theBalance - money >= theMinBalance )
      theBalance = theBalance - money;
      return money;
    } else {
      return 0.00;
  public void deposit( final double money )
    assert money >= 0.00;
    theBalance = theBalance + money;
  public void setMinBalance( final double money )
    theMinBalance = money;
  public double getMinBalance()
    return theMinBalance;
}And my subclass
public class AccountBetter extends Account
boolean a;
double charge;
double newbal;
double awooga;
public boolean in_credit(){
if (getBalance()>0.00)
a = true;
else
{a = false;
return a; }
public void credit_charge()
{if (getBalance()<0.00)
{charge = getBalance() * -0.00026116;
if (withdraw(charge)>getMinBalance()){
setMinBalance(getMinBalance()-charge);
withdraw(charge);
public void transfer (AccountBetter from, double amount)
withdraw(amount);
getBalance()=getBalance()+amount;
}

Hi, i had a task where i have to add some feature to a
account class. I have done the first two (checking if
in credit, and applying a credit charge) but i am
having trouble with the transfer one. Money has to be
transfered from "from" to the account. The tip says
the following.Finally somebody who's posting code, asking precise questions and makes sense :-)
"Send the message to withdraw to the object passed as
a parameter. Then you will need to add the withdrawn
amount to the balance in the current account. Remember
the object from is a seperate account and is passed by
reference. Consequence of passing the handle to the
object by value. So that all changes made to the
formal parameter from are made to the actual object
that is passed."Pass-by-reference v.s. pass-by-value
Search on that in this forum, you'll find about everything you ever want to know (and don't want to know) about it.
My question is that how do i set up the reference to
the account from, as i am unsure how to, as how i have
it at the moment is just withdrawing from the current
account?Imagine 2 account objects, method calls with parameters and calling methodson both objects.
(Also remember the pass-by-reference thingies you spent time on reading here in the forum :-P )
Also at the moment i have
"getBalance()=getBalance()+amount;" why will it not
allow this as they are all double?This won't ever work, sorry about that, but no luck there.
You cannot assign a value to a method call.
<snip-code />
I would take a look at the coding standards while you were at it,
for example: the method credit_change is not according to the, general accepted, coding standards ;-)
About your problem,
the signature of the transfer money is sufficient but think about the following:
- Where do i want to transfer from?
- Where do i want to transfer to?
- Can i assign values to a method or can i only do that to variables that are visible in the scope i'm working in?
- Are there any other methods I could use, for example inherited ones?

Similar Messages

  • HT201269 I'm not a tech person, but need help with my Itunes account in transferring money and downloads onto new phone I purchased 2 weeks ago when my Iphone was stolen. I don't know how to get the money or music on new phone?

    Need help with Itunes transferrs and can I use my Edge phone as a router?

    I'm not a tech person, but need help with my Itunes account in transferring money and downloads onto new phone
    Is this an iPhone?
    Set it up using the AppleID you used on the previous iPhone.

  • Transferring money between checking accounts when using Numbers

    I have multiple checking accounts. I have set them up so each account has it's own page within a workbook. I frequently transfer money between accounts. How do I set it up so transfers don't appear as income/expenses?

    Unawags wrote:
    Sure. How do I do it? I can get the shot (command/control/shift/4), but it won't let me paste. As for the category, I created a new one in Column D (inspector--cell--pop up--add). Do I need to set a rule in column A or E? I need to give my accountant our income/expenses and don't want to have to subtract the transfers. Am I making sense?
    "rule" usually implies conditional formatting, which affects only how cell content and background are displayed, not what's done with it, so probably not. So far you've not stated what's contained in columns A and E, so it's difficult to say what, if anything, needs to be done there.
    To post a screen shot, you use Command-Shift-4 (don't include the control key) to turn your cursor into Cross-Hairs, and then click-drag across the part of the screen to be captured. This saves a file, Picture 1, on your desktop. Rename the file and upload it to to a photo hosting site such as Flickr, Picasa or Photobucket and copy the "sharing" HTML code that they supply. Paste the HTML code here in your post.
    Regards,
    Barry

  • Need help in Account class

    Hello
    I am new to Java and am taking my first course on it. This question deals with the Account class. I have to create an Account.java program that applies the deposit method to a balance. A second testAccount.java program tests the first. It's not working and I was wondering if anyone had some ideas for me. Here is a sample of my code:
    testAccount.java
    // enter deposit
         String depositString = JOptionPane.showInputDialog (null, "Enter Deposit", "TME 2 - 6.3", JOptionPane.QUESTION_MESSAGE);
         double deposit = Double.parseDouble(depositString);
    //create the account object
         Account account = new Account (id, balance, annualInterestRate, deposit);
    Account.java
    // reurn the balance
         public double getBalance() {
              return balance;
         // set a new balance
         public void setBalance(double balance) {
              this.balance = balance;
         // return the deposit
         public double getDeposit() {
              return deposit;
         // Deposit
         public void deposit (double deposit){
              this.balance += deposit;
    public class Account {
         private int id;
         private double balance;
         private double annualInterestRate;
         private double deposit;
         // constructor
         public Account () {
              this (1122, 20000, 4.5, 0);
         // construct an account with specified id, balance, annual interest rate
         public Account(int id, double balance, double annualInterestRate, double deposit) {
              this.id = id;
              this.balance = balance;
              this.annualInterestRate = annualInterestRate;
              this.deposit = deposit;
    Thanks very much
    Craig

    Ok, sorry for the disjointed question. This my first time seeking help on the forum. Below are my two programs. The testAccount.jave runs but returns a balance that has not been modified by the deposit / withdraw. It is how to use the deposit/withdraw methods that is throwing me for a loop.
    TestAccount.java
    import javax.swing.JOptionPane;
    public class TestAccount {
         public static void main (String [] args) {
         // enter id
         String idString = JOptionPane.showInputDialog (null, "Enter Account ID", "TME 2 - 6.3", JOptionPane.QUESTION_MESSAGE);
         int id = Integer.parseInt(idString);
         // enter balance
         String balanceString = JOptionPane.showInputDialog (null, "Enter Account Balance", "TME 2 - 6.3", JOptionPane.QUESTION_MESSAGE);
         double balance = Double.parseDouble(balanceString);
         // enter annual interest rate
         String annualInterestRateString = JOptionPane.showInputDialog (null, "Enter Account Annual Interest Rate", "TME 2 - 6.3", JOptionPane.QUESTION_MESSAGE);
         double annualInterestRate = Double.parseDouble(annualInterestRateString);
         // enter deposit
         String depositString = JOptionPane.showInputDialog (null, "Enter Deposit", "TME 2 - 6.3", JOptionPane.QUESTION_MESSAGE);
         double deposit = Double.parseDouble(depositString);
         // enter withdraw
         String withdrawString = JOptionPane.showInputDialog (null, "Enter Withdraw", "TME 2 - 6.3", JOptionPane.QUESTION_MESSAGE);
         double withdraw = Double.parseDouble(withdrawString);
         //create the account object
         Account account = new Account (id, balance, annualInterestRate);
         //print results
         String output = "The Balance is " + account.getBalance() + "\nThe monthly interest is " + account.monthlyInterest();
         JOptionPane.showMessageDialog (null, output, "TME 2 - 6.3", JOptionPane.INFORMATION_MESSAGE);
         System.exit(0);
    And here is the Account.java program
    public class Account {
         private int id;
         private double balance;
         private double annualInterestRate
         // constructor
         public Account () {
              this (1122, 20000, 4.5);
         // construct an account with specified id, balance, annual interest rate
         public Account(int id, double balance, double annualInterestRate, double deposit) {
              this.id = id;
              this.balance = balance;
              this.annualInterestRate = annualInterestRate;
         // return the id
         public int getID() {
              return id;
         // set a new id
         public void setID(int id) {
              this.id = id;
         // reurn the balance
         public double getBalance() {
              return balance;
         // set a new balance
         public void setBalance(double balance) {
              this.balance = balance;
         // Deposit
         public void deposit (double deposit){
              balance += deposit;
         // Withdraw
         public void withdraw ( double withdraw) {
              this.balance -= withdraw;
         // return the annual interest rate
         public double getAnnualInterestRate() {
              return annualInterestRate;
         // set a new annual interest rate
         public void setAnnualInterestRate(double annualInterestrate) {
              this.annualInterestRate = annualInterestRate;
         // convert annual interest rate into monthly
         public double monthlyInterest() {
              double monthlyInterest = annualInterestRate / 1200 * balance;
              return monthlyInterest;
    Thanks very much in advance
    Craig

  • HT204053 I have 2 Itunes accounts, one I don't use with money in the account, can I combine that money or account into the account I currently use?

    I have 2 Itunes accounts, one I don't use with money in the account, can I combine that money or account into the account I currently use?

    You can access, usually under the Apple (icon) menu in the main desktop
    window, note item with name "About this Mac" & click on that, to see more
    information about your computer, its OS X version, and other. The system
    version and build model are there. Do not post a serial number.
    If you are setting up Mail in a Mavericks OS X 10.9.x system, there often
    is access to information in the Help viewer from the main menu bar, or
    in an open mail application. If you have a Gmail or other account, that
    info is often on their home page where setup and help are located.
    The settings of each email account may vary according to their provider;
    so you would have to change your computer to accept them. An older
    link to a general look at that issue, change IMAP to POP, is covered here:
    https://discussions.apple.com/message/16770816#16770816
    While that may not answer your question, you could use the info in
    your Mac OS X system Help viewer and use its search; or maybe
    a Spotlight search to see an answer online.
    You have to learn some basic things in order to actually use these...
    and it helps to expand that so you won't have to pay for tech service
    on things you can do yourself in a few minutes, beyond easy stuff.
    Of course, you're hearing this from a guy with no ISP email, ever.
    So mine are web-mail only; & I never save email to a computer.
    PS: If you have a new Mac with an AppleCare plan, you may be able
    contact Support for help. Ask someone (for 90 days, or up to 3 years
    if the Plan was extended) there at AppleCare, for their guidance.
    http://www.apple.com/support/contact/
    Good luck & happy computing!
    edited

  • Install Base Accounting Class code

    Hi,
    Iam using api csi_item_instance_pub.update_item_instance for updating Install base instance.
    Iam able to update the partyid, account id but not accounting class code.
    Can anyone please help me how to update accounting class code along with party information.
    Any help is highly appreciated.
    Here is my code which Iam using to update Item instance..
    CREATE OR REPLACE PROCEDURE updateib_load_test
    IS
    g_instance_id_lst csi_datastructures_pub.id_tbl;
    l_instance_rec apps.csi_datastructures_pub.instance_rec;
    p_ext_attrib_values apps.csi_datastructures_pub.extend_attrib_values_tbl;
    p_party_tbl apps.csi_datastructures_pub.party_tbl;
    p_account_tbl apps.csi_datastructures_pub.party_account_tbl;
    l_pricing_attrib_tbl apps.csi_datastructures_pub.pricing_attribs_tbl;
    l_org_assignments_tbl apps.csi_datastructures_pub.organization_units_tbl;
    l_asset_assignment_tbl apps.csi_datastructures_pub.instance_asset_tbl;
    l_txn_rec apps.csi_datastructures_pub.transaction_rec;
    x2_txn_rec apps.csi_datastructures_pub.transaction_rec;
    l_return_status VARCHAR2 (100);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2 (2000);
    l_created_manually_flag VARCHAR2 (100);
    ----l_org_id NUMBER := 204;
    n NUMBER := 1;
    v_instance_id NUMBER;
    p_commit VARCHAR2 (5);
    p2_commit VARCHAR2 (5);
    p_validation_level NUMBER;
    p_init_msg_lst VARCHAR2 (500);
    v_instance_party_id NUMBER;
    v_ip_account_id NUMBER;
    l_relationship_tbl apps.csi_datastructures_pub.ii_relationship_tbl;
    v_relationship_id NUMBER;
    v_success VARCHAR2 (1) := 'T';
    x2_return_status VARCHAR2 (100);
    x2_msg_count NUMBER;
    x2_msg_data VARCHAR2 (2000);
    p2_validation_level NUMBER;
    p2_init_msg_lst VARCHAR2 (500);
    a NUMBER;
    t1_msg_dummy VARCHAR2 (1000);
    t1_output VARCHAR2 (1000);
    l_not_created NUMBER;
    l_buffer VARCHAR2 (32767);
    l_problem EXCEPTION;
    l_message VARCHAR2 (2000);
    CURSOR updateib_cur
    IS
    SELECT *
    FROM ib_conv_stg
    WHERE updateib = 'Y'
    AND status_stg = 'V'
    AND new_instance_number IS NOT NULL
    AND transaction_id_stg = 8077;
    BEGIN
    -- DBMS_OUTPUT.put_line ('AFTER BEGIN');
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'AFTER BEGIN');
    FOR updateib_rec IN updateib_cur
    LOOP
    BEGIN
    l_instance_rec.accounting_class_code := fnd_api.g_miss_char;
    IF p_party_tbl.EXISTS (1) IS NOT NULL
    THEN
    p_party_tbl.DELETE;
    END IF;
    IF p_account_tbl.EXISTS (1) IS NOT NULL
    THEN
    p_account_tbl.DELETE;
    END IF;
    IF p_ext_attrib_values.EXISTS (1) IS NOT NULL
    THEN
    p_ext_attrib_values.DELETE;
    END IF;
    /* SELECT apps.csi_item_instances_s.NEXTVAL
    INTO v_instance_id
    FROM SYS.DUAL;*/
    l_instance_rec.instance_id :=
    TO_NUMBER (updateib_rec.new_instance_number);
    l_instance_rec.instance_number := updateib_rec.new_instance_number;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    l_instance_rec.instance_id);
    l_instance_rec.object_version_number := updateib_rec.object_version;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    l_instance_rec.object_version_number
    --l_instance_rec.inventory_item_id := updateib_rec.inventory_item_id;
    l_instance_rec.inv_master_organization_id :=
    updateib_rec.inv_master_organization_id;
    --189;
    l_instance_rec.mfg_serial_number_flag :=
    updateib_rec.mfg_serial_number_flag;
    --'Y';
    --l_instance_rec.serial_number := updateib_rec.ls_serial_number;
    ---'LOG0005';
    l_instance_rec.quantity := updateib_rec.quantity; --1;
    l_instance_rec.unit_of_measure := updateib_rec.unit_of_measure;
    --'EA';
    l_instance_rec.accounting_class_code :=
    updateib_rec.accounting_class_code;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    updateib_rec.new_instance_number
    || 'instance_rec'
    || l_instance_rec.accounting_class_code
    || 'updateib'
    || updateib_rec.accounting_class_code
    --'CUST_PROD'; --'INV';
    l_instance_rec.instance_status_id := updateib_rec.instance_status_id;
    --510;
    l_instance_rec.customer_view_flag := updateib_rec.customer_view_flag;
    --'N'; --N
    l_instance_rec.merchant_view_flag := updateib_rec.merchant_view_flag;
    --'Y'; --Y
    l_instance_rec.sellable_flag := updateib_rec.sellable_flag;
    --'Y'; --N
    --l_instance_rec.active_start_date := updateib_rec.active_start_date;
    --SYSDATE;
    l_instance_rec.location_type_code := updateib_rec.location_type_code;
    --'HZ_PARTY_SITES';
    l_instance_rec.location_id := updateib_rec.location_id; --375885;
    l_instance_rec.install_date := updateib_rec.install_date;
    --SYSDATE;
    l_instance_rec.install_location_type_code :=
    updateib_rec.install_location_type_code;
    --'HZ_PARTY_SITES';
    l_instance_rec.install_location_id :=
    updateib_rec.install_location_id;
    --375885;
    --l_instance_rec.vld_organization_id :=
    --updateib_rec.last_vld_organization_id;
    --2104;
    l_instance_rec.creation_complete_flag :=
    updateib_rec.creation_complete_flag;
    --'Y';
    --l_instance_rec.object_version_number :=
    --updateib_rec.object_version_number;
    -- 1;
    l_instance_rec.external_reference :=
    updateib_rec.ls_external_reference;
    l_instance_rec.instance_usage_code :=
    updateib_rec.instance_usage_code;
    l_instance_rec.inv_organization_id :=
    updateib_rec.inv_organization_id;
    l_instance_rec.inv_subinventory_name :=
    updateib_rec.inv_subinventory_name;
    l_instance_rec.inv_locator_id := updateib_rec.inv_locator_id;
    l_instance_rec.manually_created_flag :=
    updateib_rec.manually_created_flag;
    l_instance_rec.last_oe_po_number := updateib_rec.last_oe_po_number;
    l_instance_rec.instance_type_code :=
    updateib_rec.ls_instance_type_code;
    l_instance_rec.attribute3 := updateib_rec.ls_warranty_expiration_date;
    --l_instance_rec.UPDATE_ORACLE:= updateib_rec.UPDATE_ORACLE;
    -- ************* FOR PARTIES **********************************************************
    /* SELECT apps.csi_i_parties_s.NEXTVAL
    INTO v_instance_party_id
    FROM SYS.DUAL;*/
    p_party_tbl (1).instance_party_id := updateib_rec.instance_party_id;
    p_party_tbl (1).instance_id :=
    TO_NUMBER (updateib_rec.new_instance_number);
    p_party_tbl (1).party_source_table :=
    updateib_rec.owner_party_source_table;
    --'HZ_PARTIES'; --
    p_party_tbl (1).party_id := updateib_rec.owner_party_id;
    --442143; --13478;
    p_party_tbl (1).relationship_type_code := 'OWNER';
    p_party_tbl (1).contact_flag := 'N';
    -- l_party_tbl (1).active_start_date := updateib_rec.active_start_date;
    --SYSDATE;
    p_party_tbl (1).object_version_number :=
    updateib_rec.object_version_p;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    p_party_tbl (1).object_version_number
    -- *********** FOR PARTY ACCOUNT *****************************************************
    /* SELECT apps.csi_ip_accounts_s.NEXTVAL
    INTO v_ip_account_id
    FROM SYS.DUAL;*/
    p_account_tbl (1).ip_account_id := updateib_rec.ip_account_id;
    p_account_tbl (1).instance_party_id := updateib_rec.instance_party_id;
    p_account_tbl (1).party_account_id :=
    updateib_rec.owner_party_account_id;
    --755865;
    p_account_tbl (1).relationship_type_code := 'OWNER';
    --l_account_tbl (1).active_start_date := updateib_rec.active_start_date;
    --SYSDATE;
    p_account_tbl (1).object_version_number :=
    updateib_rec.object_version_a;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    p_account_tbl (1).object_version_number
    -- 1;
    p_account_tbl (1).parent_tbl_index := 1;
    p_account_tbl (1).call_contracts := 'Y';
    -- ************************** TRANSACTION REC *****************************************
    l_txn_rec.transaction_date := SYSDATE;
    l_txn_rec.source_transaction_date := SYSDATE;
    l_txn_rec.transaction_type_id := 1;
    l_txn_rec.object_version_number := 1;
    -- *************** API CALL *******************************************************
    -- DBMS_OUTPUT.put_line ('BEFORE CREATE ITEM INSTANCE');
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'BEFORE UPDATE ITEM INSTANCE'
    END;
    BEGIN
    fnd_msg_pub.initialize;
    csi_item_instance_pub.update_item_instance
    (p_api_version => 1.0,
    p_commit => apps.fnd_api.g_true
    --Defaults assigned in the package
    p_init_msg_list => apps.fnd_api.g_true
    --Defaults assigned in the package
    p_validation_level => apps.fnd_api.g_valid_level_full
    --Defaults assigned in the package
    p_instance_rec => l_instance_rec,
    p_ext_attrib_values_tbl => p_ext_attrib_values,
    p_party_tbl => p_party_tbl,
    p_account_tbl => p_account_tbl,
    p_pricing_attrib_tbl => l_pricing_attrib_tbl,
    p_org_assignments_tbl => l_org_assignments_tbl,
    p_asset_assignment_tbl => l_asset_assignment_tbl,
    p_txn_rec => l_txn_rec,
    x_instance_id_lst => g_instance_id_lst,
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data
    COMMIT;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'AFTER UPDATE ITEM INSTANCE'
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'test' || l_msg_data);
    /* apps.fnd_file.put_line (apps.fnd_file.LOG,
    'test1'
    || apps.fnd_msg_pub.get
    (l_lcv,
    apps.fnd_api.g_false
    IF l_return_status != apps.fnd_api.g_ret_sts_success
    THEN
    l_not_created := l_not_created + 1;
    ROLLBACK;
    RAISE l_problem;
    END IF;
    updating STATUS in stg table
    BEGIN
    IF l_return_status = 'S'
    THEN
    dbms_output.put_line('satus :'||l_return_status);
    COMMIT;
    END IF;
    COMMIT;
    END;
    -------------exception l_problem
    EXCEPTION
    WHEN l_problem
    THEN
    IF (l_msg_count > 0)
    THEN
    l_buffer := '';
    FOR l_lcv IN 1 .. l_msg_count
    LOOP
    l_message :=
    apps.fnd_msg_pub.get (l_lcv, apps.fnd_api.g_false);
    END LOOP;
    END IF;
    COMMIT;
    END;
    END LOOP;
    END updateib_load_test;

    Hi Nagamohan,
    Thanks for your reply.
    Iam using the Location type code 'HZ_PARTY_SITES'.
    Actually Iam updating existing instance to update party information.
    The existing instance has the accounting_class_code as 'CUST_PROD'.
    I want to update accounting class code to 'INV' while updating party information.
    Iam able to update party information but not able to update accounting class code.
    When I digged into the api, csi_item_instance_pub.update_item_instance I found some code which was updating the accounting_class_code to null if there is party information to be updated. I think this is the reason Iam not able to update accounting class.
    Please help me if there is any chance of updating accounting class code along with party information.
    Thanks in advance

  • Can I create new wip accounting class type?

    What are the differences between wip accounting class types are set? and can I define new types?

    >
    I could use some quick help. In our 9i environment I used to type in dbca command to create a new database. Is there a similar option in 10G express.
    >No. You cannot create a XE database: it's created when installing XE and you cannot create another database with XE software on the same host.
    >>I can not seem to find a way to create a new database instance. I am guessing I will need to re-create my schema, and table structures under the one instance. Is that true?
    >Yes you need to create your schema in the existing XE database.

  • Accounting Class

    I need to do a presentation for my accounting class. For that,
    I need to know more about Oracle's accounts receivable. What
    kind of infomation can you give me? It does not need to be very
    specific. Thank you for all your help.
    Joe Fogarty

    The reasons for that encouragement could be a matter of preference/familiarity on the part of the professor, or could arise from the fact that the feature sets of the two applications are not the same.
    If the course includes use of Excel functions and features not supported by Numbers, you'll be placing an extra learning burden on yourself to find ways to do the same task without the same tools, and sometimes you'll find it much more difficult (or not possible) to do the same task without those tools.
    Regards,
    Barry

  • HT201272 Help - have an iTunes account on iPad for well over a year. Just bought iPhone 5 and I cannot purchase apps using my account. I am asked to verify my credit card and details but then it rejects them. They are still fine on the iPad. Any ideas?

    Help - have an iTunes account on iPad for well over a year. Just bought iPhone 5 and I cannot purchase apps using my account. I am asked to verify my credit card and details but then it rejects them. They are still fine on the iPad. Any ideas?
    I tried to contact support but they do not recognise my Thai phone number.
    the Thai support site is all in Thai (and I neither read or write it).
    All I want is a single email address that works - it must be quite a simple process.
    I don't want to create another account with another credit card - life will just get seriously complicated then.
    BTW my apple I'd is accepted for downloading free apps!!!

    First of all, you should always save you photos on computer like any other digital camera.
    Backup on iCloud or iTunes only backup your Camera Roll. The other photos should be already on the computer.
    Note: Photos are not saved in iTunes, it's only a conduit between your iPhone and your photo managing software on computer.
    What computer do you have?

  • Please help me with the accounting records of iTunes. At step in placing credit card details are asked to contact iTunes Support

    Please help me with the accounting records of iTunes. At step in placing credit card details are asked to contact iTunes Support

    Brenda, the easiest way to contact the support team is thru the iTunes Customer Service website:
    http://www.apple.com/support/itunes/contact/

  • Help with dynamic creation of class object names

    Hi all
    Wonder if you can help. I have a class player.java. I want to be able to create objects from this class depending on a int counter variable.
    So, for example,
    int counter = 1;
    Player p+counter = new Player ("Sam","Smith");the counter increments by 1 each time the method this sits within is called. The syntax for Player name creation is incorrect. What I am looking to create is Player p1, Player p2, Player p3.... depending on value of i.
    Basically I think this is just a question of syntax, but I can't quite get there.
    Please help if you can.
    Thanks.
    Sam

    here is the method:
    //add member
      public void addMember() {
        String output,firstName,secondName,address1,address2,phoneNumberAsString;
        long phoneNumber;
        boolean isMember=true;
        this.memberCounter++;
        Player temp;
        //create HashMap
        HashMap memberList = new HashMap();
        output="Squash Court Booking System \n";
        output=output+"Enter Details \n\n";
        firstName=askUser("Enter First Name: ");
        secondName=askUser("Enter Second Name: ");
        address1=askUser("Enter Street Name and Number: ");
        address2=askUser("Enter Town: ");
        phoneNumberAsString=askUser("Enter Phone Number: ");
        phoneNumber=Long.parseLong(phoneNumberAsString);
        Player p = new Player(firstName,secondName,address1,address2,phoneNumber,isMember);
        //place member into HashMap
        memberList.put(new Integer(memberCounter),p);
        //JOptionPane.showMessageDialog(null,"Membercounter="+memberCounter,"Test",JOptionPane.INFORMATION_MESSAGE);
        //create iterator
        Iterator members = memberList.values().iterator();
        //create output
        output="";
        while(members.hasNext()) {
          temp = (Player)members.next();
          output=output + temp.getFirstName() + " ";
          output=output + temp.getSecondName() + "\n";
          output=output + temp.getAddress1() + "\n";
          output=output + temp.getAddress2() + "\n";
          output= output + temp.getPhoneNumber() + "\n";
          output= output + temp.getIsMember();
        //display message
        JOptionPane.showMessageDialog(null,output,"Member Listings",JOptionPane.INFORMATION_MESSAGE);
      }//end addMemberOn running this, no matter how many details are input, the HashMap only gives me the first one back....
    Any ideas?
    Sam

  • I need help transferring Bootcamp (Windows XP) from my old Macbook Pro to the new one. How do I make bootable clone of Bootcamp?

    Hi I just got a new MacBook Pro I need help transferring Bootcamp (Windows XP) from my old Macbook Pro to my new Macbook Pro  Mac OS X 10.7.4  2.6 Ghz Intel Core 17. How do I make bootable clone of Bootcamp?

    you can't just move XP even if you took the hard drive and have Windows boot and function.
    Apparently there are Windows tools to sanitize the OS and strip all the motherboard drivers and services.
    Time to get a supported OS. Don't want to pay, then use 8 for the time until it goes on sale.
    There are no drivers for even Vista on 2011 and later Macs.

  • Hello my iphone 3gs just been stolen how can i block the iphone and how could i track it i don't know for sure if i have find my iphone? please help i got many accounts on it and i don't have a passcode :((

    hello my iphone 3gs just been stolen how can i block the iphone and how could i track it i don't know for sure if i have find my iphone? please help i got many accounts on it and i don't have a passcode :((

    It was never free for the 3GS.
    It is if the initial sign-up is done on an iPhone 4, iPad or iPod touch 4th gen.
    From http://support.apple.com/kb/HT4436:
    After I sign up for Find My iPhone for free, can I use it on other iOS devices?
    Yes, if your devices are running iOS 4.2. For example, you can sign up for Find My iPhone for free on your iPad and use the same account information to sign in to MobileMe on your iPhone 3GS and turn on Find My iPhone.

  • Just transfered my itunes account to a new computer ,when i try to sync i get a 'the ipod is synced with another  itunes account'

    I have just transferred my itunes account to a new computer and when i try to sync , I get a 'this ipod is synced with another itunes library ,do you want to erase this ipod and sync with this itunes library.will answering 'yes' erase what i currently have on my ipod.i'd like to get an ipad 3, if i cant sort out my account ,I'll get the galaxy note 10.1 !

    "I have just transferred my itunes account to a new computer and when i try to sync , I get a 'this ipod is synced with another itunes library ,do you want to erase this ipod and sync with this itunes library"
    Correct.
    "will answering 'yes' erase what i currently have on my ipod"
    Yes.
    If you copied everything from your old computer to your new one, as you should always do, then the content will be put right back when you sync.
    "i'd like to get an ipad 3, if i cant sort out my account ,I'll get the galaxy note 10.1 !"
    OK.  We are all itunes users like you. You threat of buying a different device means nothing here.

  • Please can u help transferal of ALL my photos from sony xperiaz1 to macbook pro. I've tried several times but lots r still missing altho' still on mob. In hope - thanks!

    Please can u help transferal of ALL my photos from sony xperiaz1 to macbook pro. I've tried several times but lots r still missing altho' still on mob. In hope - thanks!

    I have tried all the above and nothing seems to work. Any other suggestions?

Maybe you are looking for

  • ORA-00600: internal error code, arguments: [15720], [], [], [], [], [], [],

    Hi All, I'm getting the below error; ORA-00600: internal error code, arguments: [15720], [], [], [], [], [], [], [] Serach on google, but didn't get anything great. Please advice. Regards, Ashwani N.

  • Why I can't updata anything in my iphone 6?

      I can download anything in the app store but I can't update.

  • Black Screen at Classic Startup?

    Hello, I have an OS9 drive and a OSX/Tiger drive. When I use the 'Startup Disk' Control Panel on my 9.2.2 drive, I hear the chime, but the screen remains totally black. Restarting a few times gets things going, but I would like to fix this issue. Any

  • See a list of all certificates possible?

    Hi, maybe i am a bit naive but i hope that there is a possibility to see all my certificates. My issue is that i need to create a certificate list with the date of expire of each certificate. We use Weblogic 10.3. I have access via unix or web interf

  • How To Get Value PRD No TO Work Center NAME

    Hi Guru i created Zreport  the Parameter are P_AUFNR TYPE AFKO-AUFNR OBLIGATORY  ,                                                            P_ARBPL TYPE S022-ARBPL OBLIGATORY . Currently i am doing i enter any Production Order No  and Work Center a