Help again please

so i connected my ipod to itunes and then a pop up came and claimed that new software was installed and the computer had to be rebooted. i did that and i reconnected the ipod. but it wont show up on the itunes. and the ipod is showing a do not disconnect sign.

IF there is a ribbon isse with the screen connection to the main board, then it may be starting but since the screen wont light up, you wouldnt know unless it vibrated a bit.
since it doesnt have a hdd, you cannot hear it running.
not that you would do this...but if it were me, i would take it apart and check the connections.
@matthew
interetsting approach...replacing the battery while holding u..ill have to remeber that and try it sometime. creative.

Similar Messages

  • Re: help again please

    Check your braces for your 'if' statements. I don't think they are what you intended. You only update carmake if the car is a mercedes.
    Please use more descriptive subject titles. "Help again please", "help appreciated", and "just cant work this out" could describe 99% of the threads on this forum. Maybe something like "Why is this an infinite loop?" would be useful.

    import java.io.*;
    import java.util.*;
    public class TestPlan
       public static void main(String args[])throws FileNotFoundException
          Scanner inFile = new Scanner(new FileReader("c:\\praccc.txt"));
          PrintWriter outFile = new PrintWriter("c:\\cars.out.txt");
          String carMake = inFile.next();
          outFile.println("Enter make [* ends]:> " + carMake);
          int age = inFile.nextInt();
          outFile.println("Enter age:> " + age);
          int daysHired = inFile.nextInt();
          outFile.println("Enter no. of days hired:> " + daysHired);
          int kmsTravelled = inFile.nextInt();
          outFile.println("Enter kms travelled:> " + kmsTravelled);
          while(!carMake.equals("*"))
                carMake = inFile.next();
                outFile.println("Enter make [* ends]:> " + carMake);
                age = inFile.nextInt();
                outFile.println("Enter age:> " + age);
                daysHired = inFile.nextInt();
                outFile.println("Enter no. of days hired:> " + daysHired);
                kmsTravelled = inFile.nextInt();
                outFile.println("Enter kms travelled:> " + kmsTravelled);
                inFile.close();
                outFile.close();
    }ok sorry im not very experienced with java as you can tell but if this question doesnt solve my prob I think I will give up. The code above which i have broke up still gives me NoSuchElementException. The file praccc.txt simply contains....
    mercedes 10 100 100
    mercedes 20 200 200
    mercedes 30 100 200
    mercedes 30 200 100
    mercedes 20 130 200
    *

  • Atmguy help again please

    Hi atmguy
    I follow what you are saying(I think)
    Below is the full Account constructor but still get same error msg
    cannot resolve symbol - constructor Password()
    public Account(String n, String p, String d, String t, String a)
                   String strL = "rt"; //**just inserted
                   String strA = "is"; //**just inserted
                   Password pw= new Password(strL,strA); //**just inserted
                   strName = n;
                   strPassword = p;
                   strLastDate = d;
                   strLastTime = t;
                   strAccess = a;
         }can someone please help!! why is it i get an error message if password class has an overloaded costructor when trying to extend password class with Account class this doesnt happen if the default constructor is used (only problem is I'm not allowed to change password class) error says cannot resolve symbol - constructor Password()
    what follows is an edited version of my program
    public class Account extends Password
    String strOne;
    String strTwo;
    public Account()
    public class Password {
    private String password;
    private String name;
    public Password(String n, String p) {
    password = p;
    name = n;
    thank you

    Hi again atmguy
    i am really floundering here, im sure you'ev realised OO is new to me
    to be honest im not certain what is required for my assignment we were given 2 files, block3.java password.java. block3 creates an arrayList and is populated with 3 passwords but it only allows or rejects the user but we have to implement the following the design im sure I can do the extra funtioniality but im not sure what the third file should be it says �create a third file of your own that inherits the Password.java� not sure if Password.java should maybe inherit the third file
    thanks for your help up till now if you could suggest the design I think I can implement it
    The new functionality required is as follows:
    1.     The application must allow for accounts to have different levels of access rights. This is expressed as a �true� or �false� in several categories:
    a.     Read
    b.     Write
    c.     Delete
    d.     Create
    2.     The default accounts that are created should have differing levels of access:
    a.     Guest should have read access only.
    b.     System should have read and write access.
    c.     Root should have Read, Write, Delete and Create access.
    3.     Upon logging into an account, the applet should present a summary of what access rights the account has.
    4.     The account should hold details of when the user last logged in, and this information should be presented to them upon a successful login.
    5.     Upon three unsuccessful login attempts in a row, the applet should forbid any more attempts being made.
    Much of the functionality of this application is spread over three files. One of these files (password.java) must not be modified in any way. The applet file provided will need modification to meet the requirements of the assessment, and you will need to create a third file of your own that inherits the Password.java file.
    Remember that the benefits of using objects lie in reusability� you shouldn�t rewrite any code that has been provided unless there is a reason to do so. Where possible, you should make use of existing functionality by ensuring your object model allows for calls to be made to parent objects where appropriate.
    public class Block3 extends JApplet implements ActionListener{
         ArrayList myPasswords;
         JLabel Login, Password;
         JTextField loginText, passText;
         JButton loginButton;
         public void init() {
              ������������
    ������������
              populateAccounts();
         public void populateAccounts() {
              addAccount ("Guest", "Guest");
              addAccount ("Root", "Root");
              addAccount ("System", "System");
         public boolean addAccount(String name, String password) {
              Password temp;
              for (int i = 0; i < myPasswords.size(); i++) {
                   temp = (Password)myPasswords.get(i);
                   if (temp.queryName().equalsIgnoreCase(name)) {
                        return false;
              temp = new Password (name, password);
              myPasswords.add (temp);
              return true;
         public boolean checkPassword () {
              String name, pass;;
              Password temp;
              name = loginText.getText();
              pass = passText.getText();
              for (int i = 0; i < myPasswords.size(); i++) {
                   temp = (Password)myPasswords.get(i);
                   if (temp.checkPassword (name, pass) == true) {
                        return true;
              return false;
         public void actionPerformed (ActionEvent e) {
              if (checkPassword() == true) {
                   JOptionPane.showMessageDialog (null, "Access Granted!");
              else {
                   JOptionPane.showMessageDialog (null, "Access Denied!");
    public class Password {
         private String password;
         private String name;
         public Password(String n, String p) {
                   password = p;
                   name = n;
         public boolean checkPassword (String n, String p) {
              if (!name.equalsIgnoreCase(n)) {
                   return false;
              if (!password.equalsIgnoreCase (p)) {
                   return false;
              return true;
         public String queryPassword () {
              return password;
         public String queryName() {
              return name;

  • Help Again Please Link code in XML

    Hello again everybody, from Sunny Bali.
    I got over my last problem with your help,, thanks very much for that.
    I have a new question which I hope can be answered, I don't know if what I am trying to do is possible but I want to give it a try. Again apologies for not being able to provide a link to the site,, still not have one,, and again apologies for my still training,, I hope the answer if any isn't too technical.
    I have set up a dataset on my page (lets call it ds1) I have a bit in the lists called "button" which displays a button image
    so the code looks like this, that all works dandy.
    <Rental>
    <house>
    <button>./Buttons/more.png</buttons>
    </house>
    <house>
    <button>./Buttons/more.png</buttons>
    </house>
    </Rental>
    What I would like to do is to put a link to different page on my site, from each section  button, ,, so for example the first section needs code to link to a page1 on my site,, and the second section button needs code to link to a page2 on my site,, etc
    Is such a thing possible ? and if so,, what is the code I should enter ? ... I have tried searching the forum's and other places to try and find the solution before bothering you guys,, but have finally given up,, can't find it anywhare,,, so please can someone help me like you did before... Thanks in Advance.

    Thank you once again for the swif reply.. I have't been able to make it work,,
    here is a snippit of what I have done,, (hope I interpreted the instructions right
    The XML bit
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <HouseRentals>
    <House>
    <Area>Kuta</Area>
    <Size>Land Size 2 ARE (approx 400sq mtr)</Size>
    <Rooms>2 Bathrooms, Living Area, Dining Area, Laundry Room</Rooms>
    <Location>Near Sunset Road Seminyak</Location>
    <Parking>Secured Parking</Parking>
    <Electric>2600W Electric Supply</Electric>
    <Water>Town Water Suppy</Water>
    <Fixtures>Fixtures include: Air-Con,Kitchen, Western Toilet</Fixtures>
    <Phone>Phone Line Available</Phone>
    <Furnished>Part Furnished</Furnished>
    <ShorttermAus><![CDATA[<p>300$</p>per month]]></ShorttermAus>
    <MediumTermAus><![CDATA[<p>250$</p>per month-X-term length]]></MediumTermAus>
    <LongTermAus><![CDATA[200$ per year]]></LongTermAus>
    <SaleAus><![CDATA[N/A]]></SaleAus>
    <ShortTermUSA><![CDATA[350]]></ShortTermUSA>
    <MediumTermUSA><![CDATA[300]]></MediumTermUSA>
    <LongTermUSA><![CDATA[250]]></LongTermUSA>
    <SaleUSA><![CDATA[N/A]]></SaleUSA>
    <ShortTermRP><![CDATA[3,000,000]]></ShortTermRP>
    <MediumTermRp><![CDATA[2,500,000]]></MediumTermRp>
    <LongTermRp><![CDATA[2,000,000]]></LongTermRp>
    <SaleRp><![CDATA[N/A]]></SaleRp>
    <desc><![CDATA[A wonderful quiet location somewhere in Bali, recently renovated ]]></desc>
    <ReferenceNumber><![CDATA[Ref No:-BSR-HSTH-052011001 ]]></ReferenceNumber>
    <descheader><![CDATA[]]></descheader>
    <Type>2 Bed Town House</Type>
    <Situation></Situation>
    <Image>./Pictures/Pictureshouse.jpg</Image>
    <Image1></Image1>
    <Image1Desc></Image1Desc>
    <Image2></Image2>
    <Image2Desc></Image2Desc>
    <Image3></Image3>
    <Image3Desc></Image3Desc>
    <Image4></Image4>
    <Image4Desc>http://balidiscovery.com</Image4Desc>
    <button>./Buttons/more.png</button>
    </House>
    The HTML bit
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Bali Smart Rentals The Smart Way In Bali</title>
    <style type="text/css">
    </script>
    <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryXML.js" type="text/javascript"></script>
    <style type="text/css">
    var ds1 = new Spry.Data.XMLDataSet("Datasets/House Rentals.xml", "HouseRentals/House");
    ds1.setColumnType("Area", "html");
    ds1.setColumnType("Size", "html");
    ds1.setColumnType("Rooms", "html");
    ds1.setColumnType("Location", "html");
    ds1.setColumnType("Parking", "html");
    ds1.setColumnType("Electric", "html");
    ds1.setColumnType("Water", "html");
    ds1.setColumnType("Fixtures", "html");
    ds1.setColumnType("Phone", "html");
    ds1.setColumnType("Furnished", "html");
    ds1.setColumnType("ShorttermAus", "html");
    ds1.setColumnType("MediumTermAus", "html");
    ds1.setColumnType("LongTermAus", "html");
    ds1.setColumnType("SaleAus", "html");
    ds1.setColumnType("ShortTermUSA", "html");
    ds1.setColumnType("MediumTermUSA", "html");
    ds1.setColumnType("LongTermUSA", "html");
    ds1.setColumnType("SaleUSA", "html");
    ds1.setColumnType("ShortTermRP", "html");
    ds1.setColumnType("MediumTermRp", "html");
    ds1.setColumnType("LongTermRp", "html");
    ds1.setColumnType("SaleRp", "html");
    ds1.setColumnType("desc", "html");
    ds1.setColumnType("ReferenceNumber", "html");
    ds1.setColumnType("descheader", "html");
    ds1.setColumnType("Type", "html");
    ds1.setColumnType("Situation", "html");
    ds1.setColumnType("Image1Desc", "html");
    ds1.setColumnType("Image2Desc", "html");
    ds1.setColumnType("Image3Desc", "html");
    ds1.setColumnType("Image4Desc", "html");
    ds1.setColumnType("button", "html");
    </script>
    <td><div class="MasterDetail">
                                      <div spry:region="ds1" class="MasterContainer">
                                        <div class="MasterColumn" spry:repeat="ds1" spry:setrow="ds1" spry:hover="MasterColumnHover" spry:select="MasterColumnSelected">{Area}...{Type}</div>
                                      </div>
                                      <div spry:detailregion="ds1" class="DetailContainer">
    This next bit is inside a table but there is a lot of otherstuf don't need to include here
    <th height="30" colspan="4" align="left" valign="top" bgcolor="#CCFF66" scope="row">Interested In Seeing More Details ? click here &gt;&gt;&gt;&gt;</th>
                                                      <th height="30" align="center" valign="top" bgcolor="#CCFF66" scope="row"><a href="{Image4Desc}"></a><img src="{button}"alt="" name="button" width="61" height="32" id="button" /></th>
    I get the button image ok,, but no link
    I just know it's something simple that I haven't done,, or cannot see.
    Thanks for assistance
    Message was edited by: BaliWayan

  • Display presenter's note! Need help again Please

    Since installing leopard I cannot see the presenter's note on my screen and the slide on the projector's screen. I had wonderful advice in the past on how to do it in Tiger, I tried every configuration possible and I cannot do it.
    When I click off mirror I can see the slide on the screen but not on my laptop all I see is the empty desktop. If I choose to see presenter's display then my audience sees both slides and my notes.
    What am I doing wrong?
    Thank you for any help you might give me.
    Mireille

    Hi Mirelle,
    I think you need to make sure, that your notebook have found the attached monitor/projector before you begin the presentation, that way when switching off mirroring you should get a perfect picture on both monitor and projector.
    To see the notes, please be aware, that you manually have to enable notes. If you have chosen the outline view and writes here, it is not presentaed as notes. In the View menu chose show presenter notes, and now you can write your notes here, and they will be displayed during presentation at the presenter display.
    --Klaus

  • Need help again. please

    This is my code for the game called Pig. I asked help before and I fixed it. But it still doesn't seem to work.
    I need it to jump from the loop where answer = y to the next loop where answer = n.
    Which part is wrong in my program?
    Any help will be appreciate. Thank you.
    public class Pig
        public static void main (String[] args)
          String answer="y";
          int num3=0, num6=0; 
          PairOfDice die1 = new PairOfDice(); // die # 1
          PairOfDice die2 = new PairOfDice(); // die # 2
          while (num3 <= 100 || num6 <= 100)
          while (answer.equalsIgnoreCase("y"))
                rollUser();
                System.out.println ("Do you want to roll again? (y/n)");
                answer = Keyboard.readString();
          while (answer.equalsIgnoreCase("n"))
                rollComputer();
                System.out.println ();
                answer = "y";
        public static void rollUser ()
            int num1, num2, num3 = 0, two = 2;
            PairOfDice die1 = new PairOfDice(); // die # 1
            PairOfDice die2 = new PairOfDice(); // die # 2
            num1 = die1.roll();
            num2 = die2.roll();
            while (two == 2)
              if (num1 == 1) // when either face is 1
                 {num3 = num3;
                     two = 1;
              if (num2 == 1)
                 num3 = num3;
                     two = 1;}
              else  
                  if (num1 == 1)
                      if (num2 == 1) // when both faces are 1
                     {num3 = 0;
                         two = 1;}
                  else
                      num3 += num1 + num2; // sum of two faces
            System.out.println (num1 +" "+ num2); // shows both faces
            System.out.println (num3);   
        public static void rollComputer()
            int num4, num5, num6 = 0, one = 1;
            PairOfDice die1 = new PairOfDice(); // die # 1
            PairOfDice die2 = new PairOfDice(); // die # 2
            String answer="n";
            num4 = die1.roll();
            num5 = die2.roll();
           while (one == 1)
              if (num4 == 1) // when either face is 1
                 {num6 = num6;
                     one = 2;
              if (num5 == 1)
                 num6 = num6;
                     one = 2;}
              else  
                  if (num4 == 1)
                      if (num5 == 1)// when both faces are 1
                     {num6 = 0;
                         one = 2;}
                  else
                      num6 += num4 + num5; // sum of two faces
              System.out.println (num4 +" "+ num5); // shows both faces
              System.out.println (num6); // shows the sum of faces
              if (num6<=20)
                 {one=2; answer = "y";}
         

    I need it to jump from the loop where answer = y to the next loop where answer = n.And would you like to tell us what happens instead?
    -- as the code stands, your second loop will never repeat, so should not be a while loop but rather an if block.
    -- or maybe you wanted to assign the value of answer in rollComputer, but instead you declared a local variable, which you assign values to but never test.
    db

  • Help again please...don't want to muck up the whole catalog...

    About a month ago, Rob Cole, DJ_Paige, JohnBeardy and Richard Plondon patiently lead me through the steps to create best practices in establishing catalog workflow with LR as I made my transition from a combo of Media Pro, Photo Mechanic and Name Mangler  to  Lightroom as my mainstay.
    Guys, thanks again. I've taken your advice 100%. The most daring move for me was to put ALL my files in one catalog - of necessity on an external HDD - and this became the home of all my files (backed up to another external drive, of course). Once I was comfortable with this, I deleted the "current month" catalog I was also making just to be sure I could get work done (I merged this with the main (now only) catalog.
    I took all the advice to do everything starting and ending in LR and it has worked fine for my laptop and imac - the catalog is saved in Dropbox and when I back it up, I do it locally on whichever machine I am using...so far so good...this all seems sensible and has worked fine for me. I would often take a bunch of pix and save them to the laptop, add them to the LR cat and then when I go home, move them to the External HDD and then when I launched LR on the desktop the HDD is connected to, I would "find" the folder location in LR.
    Now as I'm getting ready to go away for 2 weeks and need to work on some of the files and print a few of them. Yikes - hadn't thought of PRINTING in this workflow before!!
    I've made Smart Previews of roughly the last 6 months of work, so I will be able to edit and manipulate and even email anything, but printing is another matter. Unless I've missed something I can't print from a Smart Preview, even in a "draft" mode quality.
    My short term solution was to select a range of files, hoping to have all that I want and copied them to my laptop and will open and edit (I needed PS anyhow because it will involve some compositing that needs layers for this project). Then when I get home, I can pretty easily just import the finished files to LR and I'll be fine.
    My question is really how should I handle this in the future? I have 2 locations that I frequently visit and can print at and often print new shots (easy) and that sometimes leads to wanting to print other ones - probably less often than it seems because I'm thinking I can't do that any longer with the system of housing all the files on the external drive at home. Is there any solution other than going back to a 2 catalog use of LR (I was keeping roughly the trailing 12 months in a second catalog that I synced on the laptop and destop and it worked fine except that it did mean 2 catalogs).
    Is there a best practice that addresses this issue?
    Many thanks - this forum has been critical in making the move to LR and I'm really glad I did. I no longer need about 4 apps that I used in my workflow...
    Tom

    Microsoft what? Problems with Microsoft products are best dealth with here:
    http://www.microsoft.com/mac/support

  • G4 Cube + wireless router.... help again please?

    PowerMac 5.1
    CPU Power PC G4(29) 450MhZ
    L2 Cache 1mb
    RAM 576mb
    Bus speed 100mHz
    OS 10.4.11
    Hi all, thanks to all those who've offered advice on my plight last month, see
    http://discussions.apple.com/thread.jspa?threadID=2494010
    We have a http://www.billion.com/product/voip/bipac7404vgp-voip-wireless-firewall-router.h tml
    We run a PC (usb dongle),and an old lap-top (wireless card built-in) with the router.
    Could anyone tell me if this router is compatible with my Mac/Airport card and/or USB dongle?
    I have now bought an 'original' airport card which after fitting shows up in the hardware list in 'about this mac'. Fiddling around (a little knowledge is a dangerous thing) with 'Internet Connect' there appears to be a signal (the row of squares turn blue when I 'Apply now' in Network).
    The G4 Cube however doesn't show up on the list (MAC address) of candidates on the router (where the USB dongle did).
    I downloaded a couple of applications which scan for available wireless networks but nothing showed as being available.
    Tearing my hair out - if I had any!!
    Steve

    Hi again Steve,
    It should work if the Router allows 802.11b, which I only see 802.11g listed.
    The G4 Cube however doesn't show up on the list (MAC address) of candidates on the router (where the USB dongle did).
    You have to put the Cube's MAC addy in the Router. To find the Airport's MAC addy...
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Network, click on Airport on the top right, scroll the bottom pane down until you see...
    Ethernet:
    MAC Address: (six digit MAC addy)

  • Btabz or anyone Help again please :(

    Ok so yesterday i had an issue with my ipod and btabz helped me with fixing the issue and today i noticed this.
    heres my previous post incase anyone wants to know the previous problem
    So i was useing my ipod last night and really happy with finally putting everyone of my cds on there 4000 songs took 6 months to get on there But anyway,so i ejected my ipod like im supposto,and went into my menu and EVERYTHING was gone songs n albums,so i plugged it back into my Pc trying not to tweek and it read the 12.72Gb out of 60 leaving me with the 42.96 gb Free but not one song shows up in the ipods list,and i dont know why or what i did wrong or anything can you help me i want my 4000 Songs back I dont have ne of my songs in my iTunes at all or on my pc they were all on da pod ,This is really Iupsetting,and Ifrusterating,and by the way im INew...Thanks for ur Ihelp.
    -------Josh AKA Survival
    "Welcome to Apple Discussions!This is why you need to have your music on your computer and/or backed up :-)Anyhow, you may be able to get your music back, but you will have to put it on your computer (from your iPod).See if you can get your music back via the steps listed here...MacMuse: Computer Crashed btabz "
    okay and for the new issue
    my "12.72Gb out of 60 leaving me with the 42.96 gb Free" is what my ipod said before the songs were fixed after i fixed the songs,i deleted some that i did not want off my ipod,No problem right then i noticed i had 3391 songs cuz i deleted a bunch still no problem but then i noticed this
    it says (3391 items,8.4 days,11.57 Gb)and it says Used:24.29Gb with Free:31.39 Gb,why did my Gb useage double when i fixed it,and removed a bunch of songs,and should i have removed the songs off my ipod after i did what btabz had me do?
    and for my 3rd issue some of my songs the albums are fine but the song names are like "HZUJ" and like "LBXV"and funky stuff like that whats up with that?

    just download the podplayer.exe from www.ipodsoft.com and backup all the songs from ur ipod to ur system and then upload them to the itunes library . then u restore ur ipod for the latest updater available and then transfer all ur 13gb songs back into ur ipod.
    its a long process though, but guess it works fine.

  • Quick Help Again Please!

    Guys to do a for loop it keeps giving me an error that i need a ; after 1<=12, any ideas on the format i have it in?
    thanks
    for(int i, i<=12; i++)
                             System.out.println("Payment #   Interst    Principal   Balance");
                             System.out.println("1         "+fmt.format(interest)+fmt.format(principal)+fmt.format(loanAmt));
                             i++;
                        }

    Show us where you initialize your NumberFormat object.Ok here it is but im not done:
      import java.util.*;
       import java.text.*;
        public class InterestRate
           public static void main(String[]args)
             double interestRate, monthlyInterest, loanAmt, monthlyPmt=0, totalPmt,rate,total,input, interest=0;
                   double principal;
             int years;
                   String answer;
               DecimalFormat fmt=new DecimalFormat("0.##");
             Scanner scan=new Scanner (System.in);
               do{
             System.out.println("Input the annual interest rate of your loan:");
             interestRate=scan.nextDouble();
             NumberFormat fmt2=NumberFormat.getPercentInstance();
             monthlyInterest=interestRate/12.0;
             System.out.println("Enter the number of years :");
             years=scan.nextInt();
             System.out.println("Enter the loan amount:");
             loanAmt=scan.nextDouble();
                   principal=( monthlyPmt-interest);
                   monthlyPmt = (loanAmt*monthlyInterest)/(1-(1/(Math.pow(1+monthlyInterest,years*12))));
             totalPmt=monthlyPmt*12*years;
                   interest=loanAmt*monthlyInterest;
                   for(int i, i<=12; i++)
                             System.out.println("Payment #   Interst    Principal   Balance");
                             System.out.println("1         "+fmt.format(interest)+fmt.format(principal)+fmt.format(loanAmt));
                             i++;
             System.out.println("The interest rate is "+fmt2.format(interestRate));
             System.out.println("Number of Years = "+years);
             System.out.println("Loan Amount = "+loanAmt);
             System.out.println("The monthly payment is $"+fmt.format(monthlyPmt));
             System.out.println("The total payment is $"+fmt.format(totalPmt));
                   System.out.println("The monthly interest is $"+fmt.format(interest));
                   System.out.println();
                   System.out.println();
                   System.out.println("Would you like to try again?");
                   answer=scan.next();
                   }while(answer.equalsIgnoreCase("y"));
       }

  • TS1702 Saying purchase cannot be bought again help again please

    My problem was just fixed and now it's doing the same thing again

    What's happening is there seems to be billing blocks placed on your account. The advisors are trying to do you a favour but it is not always immediately effective, that's why they ask you to wait after changes.
    For some reason, something on your account keeps getting your purchases blocked after those blocks are removed. This could be due to various reasons, though we can't discuss that on this forum.
    Hopefully it gets sorted out soon. But I've seen loops like this a few times before...
    I'm curious what it is you are trying to buy that is causing this.

  • RoboWizard....I need your help again, please?

    Hi...
    I tried putting the program and all the projects onto the
    local machine, but I am still getting those errors and cannot
    produce any output. Its just about driving me nuts! What else could
    it be?
    Steph

    Steph -
    Try creating a new project on your workstation, and import
    your existing pages afresh. That should get you a new, server-free
    project and project file.
    If you answer this message using the Reply option, we can
    keep your issue to a single thread. That would be cool.

  • Help again please [iOS]

    Why can I see my documents on my iphone but not on my ipad?

    Have you updated to the latest version of Acrobat DC (formerly Reader)?
    In the latest version, if you've logged into your Adobe ID, the latest version of your PDF files will automatically appear in the Recent list. You can also upload them to the Document Cloud where they're available from all of your devices.

  • Help (again) with Average Script

    Hi Everyone:
    I have problems again with a script in calculation manager:
    I need to calculate the average of a member in one account across the year. For example, for Jan the average of Count_1 is equal to the value of Count_2 in Jan; for Feb Count_1 is equal to the sum of values of Jan and Feb from Count_2 divided for 2; for Mar Count_1 is equal to the sum of values of Jan, Feb and Mar from Count_2 divided for 3 and so on.
    I'm using the follow script:
    *"Count_1"=@AVGRANGE(SKIPNONE,"Count_2",@CURRMBRRANGE("YearTotal",LEV,0, ,0));*
    But this script is averaging bad, because what it does for January is to take the January value and divide by two, to sum the values in February January and February and divide by 3, to sum the values in March, January, February and March and divided by 4 and so on.
    How i can solve this problem and make a script that works?
    Thanks for your help again.

    Please, someone can help me???

  • When i type in my correct password on the login screen and press enter it just goes to a blue screen for a few seconds then goes back to the same login screen again, please i need help?

    When i type in my correct password on the login screen and press enter it just goes to a blue screen for a few seconds then goes back to the same login screen again, please i need help?

    You can take some of the steps here, #4, #5 or even trying a #18
    Step by Step to fix your Mac
    but I suspect your going to first have to create a data recovery drive
    Create a data recovery, undelete boot drive
    to get your data off the machine,
    then do a #20 to eliminate the bad sectors as that's why your getting the "pinwheel" it's getting a delay reading from the drive, right when your trying to log in too, what a bad spot for it to happen.
    Step by Step to fix your Mac

Maybe you are looking for