I need help in the filereader part 2

my loop doesn't stop...i cant fix it..please help me
public static void main(String[] args) throws FileNotFoundException{
     int howMany=0;
          int[] numbers;
          Scanner inFile = new Scanner(new FileReader("sum.txt"))/*.useDelimiter("\\s*,\\s*")*/;
     while(inFile.hasNextInt()){
               howMany++;
     System.out.println(""+howMany);
     inFile.close();
the textfile is
7 3 8 8 1 0 2 7 4 4 4 5 2 6 5
i need help badly

i got it...sorry misunderstood what you said...my problem now is that...when i use the delimiter and try to read the file again...it prints 0....the text file is
7
3,8
8,1,0
2,7,4,4
4,5,2,6,5
i dont know what happened this time...it cant even read the first integer

Similar Messages

  • Need help finding the Motherboard parts number on Ideacentre B520

    Hi guys,
    I'm currently repairing an ideacentre B520 for a customer and need to have the MB parts # to have the parts ordered. 
    i've found a white sticker with somes number on it but I don't know which one is the MB parts number.
    Here the number:
    27*939530*126
    1a*2
    4*mfg: 1*2 (in bold)
    PL*00:u0* (in bold)
    46*9ae9*l01
    and the last one on another sticker.
    MB            11s1*013462z*0mP17*043  A*<
    (I've put somes * instead of caracters on purspose.
    Thanks

    Hi,
    The Motherboard part number starts with 11......
    If you download the Hardware Maintenance Manual from the Lenovo Support site, all the part numbers are there, as well as removal instructions.
    Good luck!
    CB2011

  • Hello, need help finding the right part number etc...HP Pavillion G7 series 1316dx

    Hello everyone, 
    Last resort was everyone on here I tried looking for the part on my own and hope to not waste anyone's time.
    I am looking for the correct part number for a LCD Inverter.  My laptop screen keeps going black on me.  I have shined a light on it and you can still see the screen so it is not the LCD.
    Laptop model: 
    Hp Pavillion G7 Series 1316dx 17" screen. 
    Thank you. 
    This question was solved.
    View Solution.

    HPpavillionguy.
    From your manual you do not have an LCD with CCFL inverter for the backlight.
    http://h10032.www1.hp.com/ctg/Manual/c03538328.pdf
    Page 23  Chapter 3.
    You have an LCD backlit with LED's no inverter.
    Your part number is.
    641395-001
    http://www.ebay.com/itm/HP-641395-001-584037-001-6​41629-001-NEW-17-3-WXGA-LED-LCD-Screen-Glossy-/171​...
    I do not think we have any more now. "We sold around 35 in 2 weeks."
    We were selling used ones for around $45.
    And we do not have any more listed on Ebay.
    I can check with them in the AM.
    REO
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • Ok i need help with the moving part below

    basically i am drawing an arc with four small squares (pizza and topping) one s crollbar (x) moves it side ways, and the other scrollbar (y) increase the arc to make it a circle ie a pizza! i have applied border layout etc and now the drawing is gone! i cant see it!
    my thinking is that its because the borderlayouts are on "top" of that so it is tehre but i cant see it!
    help please??
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    import java.text.DecimalFormat;
    //creating a service outlet called PizzaExpress
    public class PizzaExpress extends Applet
         implements ItemListener, AdjustmentListener {
    //creating a group for radio buttons
    CheckboxGroup pizzaOptions;
    //creating panels
    Panel p1,p2,p3,p4,p5;
    //creating a field to output the price
    TextField Total;
    //creating the 4 options for pizzas and 5 toppings
    Checkbox A1, A2, A3, A4;
    Checkbox N1, N2, N3, N4, N5;
    Label L1;
    //creating double to store the price for pizza option and toppings
    double P = 0;
    double Op = 0;
    double Total1;
    //scrollbars to move the logo
    Scrollbar x,y;
    //variables that will take scrollbar values
    int xVal = 10, deg = 60;
    public void init() {
         setLayout(new BorderLayout());
         p1 = new Panel();
         p2 = new Panel();
         p3 = new Panel();
         p4 = new Panel();
         p5 = new Panel();
         //putting the scrolbars
         y = new Scrollbar(Scrollbar.VERTICAL,60,1,60,375);
         y.addAdjustmentListener(this);
         x = new Scrollbar(Scrollbar.HORIZONTAL,10,5,10,430);
         x.addAdjustmentListener(this);
         add("South", x);
         add("East", y);
         //label for the Title
         L1 = new Label ("                                                    Welcome to Pizza Express                                        ");
         p1.add(L1);
         //saying that there are radio buttons in a group rather then checkboxes
         pizzaOptions = new CheckboxGroup();
    //initialising and adding the four diff options to panel2
    A1 = new Checkbox("cheese",false,pizzaOptions);
    p3.add(A1);
    A1.addItemListener(this);
    A2 = new Checkbox("Pepperoni",false,pizzaOptions);
    p3.add(A2);
    A2.addItemListener(this);
    A3 = new Checkbox("Spicy Hot",false,pizzaOptions);
    p3.add(A3);
    A3.addItemListener(this);
    A4 = new Checkbox("Vegetarian",false,pizzaOptions);
    p3.add(A4);
    A4.addItemListener(this);
    //adding the price textfield to panel3
    Total = new TextField(10);
    Total.setEditable(false);
    p3.add(Total);
    //adding checkboxes to panel3
    N1 = new Checkbox ("Beef");
    p2.add(N1);
    N1.addItemListener(this);
    N2 = new Checkbox ("Chillies");
    p2.add(N2);
    N2.addItemListener(this);
    N3 = new Checkbox ("Mushrooms");
    p2.add(N3);
    N3.addItemListener(this);
    N4 = new Checkbox ("Pineapple");
    p2.add(N4);
    N4.addItemListener(this);
    N5 = new Checkbox ("Sweetcorn");
    p2.add(N5);
    N5.addItemListener(this);
    //adding panels to the applet
    p1.setLayout(new FlowLayout());
    p2.setLayout(new FlowLayout());
    p3.setLayout(new FlowLayout());
    //p4.setLayout(new FlowLayout());
    //p5.setLayout(new FlowLayout());
    add("North", p1);
    //add("East", p4);
    add("West", p3);
    //add("South", p5);
    add("Center", p2);
    public void paint(Graphics g) {
         //pizza logo an arc that will become a pizza
         g.setColor(Color.red);
         g.fillArc(xVal,140,50,50,0,deg);
         //toppings
         g.setColor(Color.blue);
         g.fillOval(xVal+30,155,5,5);
         g.setColor(Color.blue);
         g.fillOval(xVal+40,155,5,5);
         g.setColor(Color.black);
         g.fillOval(xVal+35,160,5,5);
         g.setColor(Color.black);
         g.fillOval(xVal+35,150,5,5);
    public void itemStateChanged(ItemEvent e) {
         P = 0;
         Op = 0;
         //telling it to add the price if user selects a particluar pizza
         if          (A1.getState() == true) P = 5.99;
         else if (A2.getState() == true) P = 7.99;
         else if (A3.getState() == true) P = 10.99;
         else if (A4.getState() == true) P = 12.99;
         //telling it to add to itself so that if user chooses more then one item
         //it will be added to
         if         (N1.getState() == true) Op = Op + 0.50;
         if          (N2.getState() == true) Op = Op + 0.60;
         if (N3.getState() == true) Op = Op + 0.70;
         if (N4.getState() == true) Op = Op + 0.90;
         if (N5.getState() == true) {Op = Op + 1.00;}
         //giving Total1 the value of P+Op
         Total1 = (P+Op);
         //formatting Total1 so it only gives the value to 2dp!
         DecimalFormat decimalFormat = new DecimalFormat("#.##");
         Total.setText("�" + decimalFormat.format(Total1) + "p");
         //repainting so that the applet shows the latest event (ie if person changes his/her mind)
              repaint();     
    public void adjustmentValueChanged(AdjustmentEvent e) {
         xVal = x.getValue();
         deg = y.getValue();
         repaint();
    }//end

    This does something, but I have no idea what you've originally intended import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    import java.text.DecimalFormat;
    //creating a service outlet called PizzaExpress
    public class PizzaExpress extends Applet implements ItemListener, AdjustmentListener {
         //creating a group for radio buttons
         CheckboxGroup pizzaOptions;
         //creating panels
         Panel p1, p2, p3;
         DrawPanel p4;
         //creating a field to output the price
         TextField Total;
         //creating the 4 options for pizzas and 5 toppings
         Checkbox A1, A2, A3, A4;
         Checkbox N1, N2, N3, N4, N5;
         Label L1;
         //creating double to store the price for pizza option and toppings
         double P = 0;
         double Op = 0;
         double Total1;
         //scrollbars to move the logo
         Scrollbar x, y;
         //variables that will take scrollbar values
         int xVal = 10, deg = 60;
         public void init() {
              setLayout(new BorderLayout());
              p1 = new Panel();
              p2 = new Panel();
              p3 = new Panel();
              //putting the scrolbars
              y = new Scrollbar(Scrollbar.VERTICAL, 60, 1, 60, 375);
              y.addAdjustmentListener(this);
              x = new Scrollbar(Scrollbar.HORIZONTAL, 10, 5, 10, 430);
              x.addAdjustmentListener(this);
              //          add("South", x);
              //          add("East", y);
              //label for the Title
              L1 = new Label(" Welcome to Pizza Express ");
              p1.setLayout(new BorderLayout());
              p1.add("North", L1);
              //saying that there are radio buttons in a group rather then checkboxes
              pizzaOptions = new CheckboxGroup();
              //initialising and adding the four diff options to panel2
              A1 = new Checkbox("cheese", false, pizzaOptions);
              p3.add(A1);
              A1.addItemListener(this);
              A2 = new Checkbox("Pepperoni", false, pizzaOptions);
              p3.add(A2);
              A2.addItemListener(this);
              A3 = new Checkbox("Spicy Hot", false, pizzaOptions);
              p3.add(A3);
              A3.addItemListener(this);
              A4 = new Checkbox("Vegetarian", false, pizzaOptions);
              p3.add(A4);
              A4.addItemListener(this);
              //adding the price textfield to panel3
              Total = new TextField(10);
              Total.setEditable(false);
              p3.add(Total);
              //adding checkboxes to panel3
              N1 = new Checkbox("Beef");
              p2.add(N1);
              N1.addItemListener(this);
              N2 = new Checkbox("Chillies");
              p2.add(N2);
              N2.addItemListener(this);
              N3 = new Checkbox("Mushrooms");
              p2.add(N3);
              N3.addItemListener(this);
              N4 = new Checkbox("Pineapple");
              p2.add(N4);
              N4.addItemListener(this);
              N5 = new Checkbox("Sweetcorn");
              p2.add(N5);
              N5.addItemListener(this);
              //adding panels to the applet
              //p1.setLayout(new FlowLayout());
              p2.setLayout(new FlowLayout());
              p3.setLayout(new FlowLayout());
              //p4.setLayout(new FlowLayout());
              //p5.setLayout(new FlowLayout());
              p1.add("West", p3);
              p1.add("East", p2);
              add("North", p1);
              //add("East", p4);
              //add("West", p3);
              //add("South", p5);
              //add("East", p2);
              p4 = new DrawPanel();
              //p4.setBackground(Color.black);
              p4.setSize(400, 300);
              p4.setLayout(new BorderLayout());
              p4.add("East",y);
              p4.add("South",x);
              add("Center", p4);
         public void itemStateChanged(ItemEvent e) {
              P = 0;
              Op = 0;
              //telling it to add the price if user selects a particluar pizza
              if (A1.getState() == true)
                   P = 5.99;
              else if (A2.getState() == true)
                   P = 7.99;
              else if (A3.getState() == true)
                   P = 10.99;
              else if (A4.getState() == true)
                   P = 12.99;
              //telling it to add to itself so that if user chooses more then one item
              //it will be added to
              if (N1.getState() == true)
                   Op = Op + 0.50;
              if (N2.getState() == true)
                   Op = Op + 0.60;
              if (N3.getState() == true)
                   Op = Op + 0.70;
              if (N4.getState() == true)
                   Op = Op + 0.90;
              if (N5.getState() == true) {
                   Op = Op + 1.00;
              //giving Total1 the value of P+Op
              Total1 = (P + Op);
              //formatting Total1 so it only gives the value to 2dp!
              DecimalFormat decimalFormat = new DecimalFormat("#.##");
              Total.setText("�" + decimalFormat.format(Total1) + "p");
              //repainting so that the applet shows the latest event (ie if person changes his/her mind)
              p4.repaint();
         public void adjustmentValueChanged(AdjustmentEvent e) {
              xVal = x.getValue();
              deg = y.getValue();
              p4.repaint();
         public class DrawPanel extends Panel {
              public void paint(Graphics g) {
                   //pizza logo an arc that will become a pizza
                   g.setColor(Color.red);
                   g.fillArc( xVal, 140, 50, 50, 0, deg);
                   //toppings
                   g.setColor(Color.blue);
                   g.fillOval(xVal + 30, 155, 5, 5);
                   g.setColor(Color.blue);
                   g.fillOval(xVal + 40, 155, 5, 5);
                   g.setColor(Color.black);
                   g.fillOval(xVal + 35, 160, 5, 5);
                   g.setColor(Color.black);
                   g.fillOval(xVal + 35, 150, 5, 5);
    } //end

  • Need help executing the following part of code

    declare
    mpostcode varchar2(10);
    begin
    mpostcode := 'AA11AA';
    insert into url_tab
    values
    ('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode=AA11AA'));
    end;
    right now i have added postcode directly But i will like to add memory variable..
    like say.. But this results in error
    declare
    mpostcode varchar2(10);
    begin
    mpostcode := 'AA11AA';
    insert into url_tab
    values
    ('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode||'));
    end;
    This results in quote string not properly terminated..
    Kindly help and guide..
    Edited by: susf on Sep 24, 2012 10:03 PM
    Edited by: susf on Sep 24, 2012 10:30 PM

    ('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode||));
    Modify the above to
    ('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode));
    Edited by: susf on Sep 24, 2012 10:39 PM
    Other example
    declare
    mpostcode varchar2(10);
    begin
    mpostcode := 'AA11AA';
    insert into url_tab(url_name,url)
    values
    ('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode);
    end;
    You are short of a Paranthesis for Insert Values.
    Modify it to
    ('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode));

  • I need help with the Quote applet.

    Hey all,
    I need help with the Quote applet. I downloaded it and encoded it in the following html code:
    <html>
    <head>
    <title>Part 2</title>
    </head>
    <body>
    <applet      codebase="/demo/quote/classes" code="/demo/quote/JavaQuote.class"
    width="300" height="125" >
    <param      name="bgcolor"      value="ffffff">
    <param      name="bheight"      value="10">
    <param      name="bwidth"      value="10">
    <param      name="delay"      value="1000">
    <param      name="fontname"      value="TimesRoman">
    <param      name="fontsize"      value="14">
    <param      name="link"      value="http://java.sun.com/events/jibe/index.html">
    <param      name="number"      value="3">
    <param      name="quote0"      value="Living next to you is in some ways like sleeping with an elephant. No matter how friendly and even-tempered is the beast, one is affected by every twitch and grunt.|- Pierre Elliot Trudeau|000000|ffffff|7">
    <param      name="quote1"      value="Simplicity is key. Our customers need no special technology to enjoy our services. Because of Java, just about the entire world can come to PlayStar.|- PlayStar Corporation|000000|ffffff|7">
    <param      name="quote2"      value="The ubiquity of the Internet is virtually wasted without a platform which allows applications to utilize the reach of Internet to write ubiquitous applications! That's where Java comes into the picture for us.|- NetAccent|000000|ffffff|7">
    <param      name="space"      value="20">
    </applet>
    </body>
    </html>When I previewed it in Netscape Navigator, a box with a red X appeared, and this appeared in the console when I opened it:
    load: class /demo/quote/JavaQuote.class not found.
    java.lang.ClassNotFoundException: .demo.quote.JavaQuote.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.FileNotFoundException: \demo\quote\JavaQuote\class.class (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-4" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)What went wrong? and how can I make it run correct?
    Thanks,
    Nathan Pinno

    JavaQuote.class is not where your HTML says it is. That is at the relative URL "/demo/quote/".

  • I need help with the conditional build tag option RoboHelp 10

    I need help with the conditional build tag option. I want to apply CBT to content in a topic. I looked at the Help topics and believed that I applied the feature correctly. Howver, it is not working as desired. In the 2nd sentence below I want the text highlighted in blue to only appear for the printed output and the text printed in purple to only appear for the .htm /online output. Please help.
    There are common tasks used to manage the folders in the Navigator and the folders
    in the BBS Folders Viewer Grid. For more information on these common tasks see Help
    and Support in Success Enterprise. click the links below.

    Hi there
    Using tagging is a two part process.
    Part One
    You create and apply the tags to the information you wish to control.
    Part Two
    You create a Build Expression that is used when you generate your output. The Build Expression typically reads something like: NOT Tag1 (or whatever your tag name is)
    Then when you generate and use the Build Expression, the information tagged is not included in the build.
    Cheers... Rick

  • I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appr

    I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appreciated.

    OK, it now sort of works. A couple of problems here:
    After updating IOS, Safari iCloud was "automatically" switched off
    Switching it on had no effect
    resetting my iPad automatically switched off safari iCloud again
    after switching it back on, it said "turning off safari data"
    switched it off and on again, now it said : "turning on safari data" and the sync worked
    On IOS 7 no problems
    The bookmarks not being displayed was because after pressing the book icon, it defaulted to showing the history and I had to press "Back" to get to the other options

  • I just created an iCloud email and I want to use that email for my iTunes account as well. I need help suiting the old apple I'd because I do not remember anything associated with that email and I don't know the security questions

    I just created an iCloud email and I want to use that email for my iTunes account as well. I need help switching the old apple ID because I do not remember anything associated with that email and I don't know the security questions or the login for that old email.

    You cannot do that.  The AppleID you used to create the iCloud account is an active primary email address.  The email address you created with the iCloud account is also an active primary email address (all Apple domain email address automatically become AppleIDs as well).  You cannot replace the primary email address on one active AppleID with the primary email address on another, active AppleID.
    You can use your iCloud email/AppleID with iTunes, but it will be a separate account, so all your previous purchases remain tied to the other AppleID you have.
    I don't understand your statement that you could not remeber your old AppleID password, as you would have had to use it to create the iCloud account in the first place (the first step of creating the iCloud account required you to login with your existing AppleID and password)?

  • Need help with the Vibrance adjustment in Photoshop CC 2014.

    Need help with the Vibrance adjustment in Photoshop CC 2014.
    Anytime I select Vibrance to adjust the color of an image. The whole image turns Pink in the highlights when the slider is moved from "0" to - or + in value.  Can the Vibrance tool be reset to prevent this from happening? When this happens I cn not make adjustments...just turns Pink.
    Thanks,
    GD

    Thank you for your reply. 
    Yes, that does reset to “0” and the Pink does disappear.
    But as soon as I move the slider +1 or -1 or higher the image turns Pink in all of the highlights again, rather than adjusting the overall color.
    GD
    Guy Diehl  web: www.guydiehl.com | email: [email protected]

  • I need help with the iPad Remote app to connect to apple TV 2

    I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something 

    Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
     Cheers, Tom

  • Need help accessing the router web page.  I have been tol...

    Need help accessing the router web page.  I have been told my router is acting like a switch and the IP address is not in the proper range.  I have tried reseting the router (hold for 30 sec and unplug for 5 mins).  Didn't work.
    thanks

    What router are you using?  Almost all Linksys routers use 192.168.1.1 as the default local IP address, but there is at least one that uses 192.168.16.1 , namely the WTR54GS  (not the WRT54GS).
    You need to try again to reset the router to factory defaults.
    To reset your router to factory defaults, use the following procedure:
    1) Power down all computers, the router, and the modem, and unplug them from the wall.
    2) Disconnect all wires from the router.
    3) Power up the router and allow it to fully boot (1-2 minutes).
    4) Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
    5) Power down the router.
    6) Connect one computer by wire to port 1 on the router (NOT to the internet port).
    7) Power up the router and allow it to fully boot (1-2 minutes).
    8) Power up the computer (if the computer has a wireless card, make sure it is off).
    9) Try to ping the router. To do this, click the "Start" button > All Programs > Accessories > Command Prompt. A black DOS box will appear. Enter the following: "ping 192.168.1.1" (no quotes), and hit the Enter key. You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out." If you see "Reply from ...", your computer has found your router.
    10) Open your browser and point it to 192.168.1.1. This will take you to your router's login page. Leave the user name blank (note: a few Linksys routers have a default user name of "admin" (with no quotes)), and in the password field, enter "admin" (with no quotes). This will take you to your router setup page. Note the version number of your firmware (usually listed near upper right corner of screen). Exit your browser.
    If you get this far without problems, try the setup disk (or setup the router manually, if you prefer), and see if you can get your router setup and working.
    If you cannot get "Reply from ..." in step 9 above, your router is dead.
    If you get a reply in step 9, but cannot complete step 10, then either your router is dead or the firmware is corrupt. In this case, use the Linksys tftp.exe program to try to reload your router with the latest firmware. After reloading the firmware, repeat the above procedure starting with step 1.
    If you need additional help, please state your ISP, the make and model of your modem, your router's firmware version, and the results of steps 9 and 10. Also, if you get any error messages, copy them exactly and report back.
    Please let me know how things turn out for you.
    Message Edited by toomanydonuts on 01-21-2008 04:40 AM

  • I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.  Please help!

    I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.   I recieved a photo via text on my iphone and then I synced my iphone to my macbook and now it is in iphoto.  I already know that the date on the photo per the tag that shows up on it in iphoto is NOT the date the photo was actually taken.  I need article or literature or something confirming the tag is from when it was sent to the iphone and/or when it was imported.  I greatly appreciate some assistance!

    All I am trying to do is find something on a forum board or article etc stating that the the date showing in iphoto could be the date it was imported or synced or sent to me and not the actual date taken.
    The date on the photo could be anything because you can edit the date with iPhoto or any of 100 apps, free and paid for. So, the date on the photo will prove nothing, I'm afraid.
    Regards
    TD

  • Need help for the $200 promo rebate for trade-in of I Phone 4

    Need help for the $200 promo rebate for trade-in of I Phone 4.  Unable to preregister when I ordered the new 6  in September.  Now can not contact VZW recycle program regarding.

    When I ordered my phone on Sept. 13th in a Verizon store, I had to ask the salesman how I went about getting the $200 rebate. He said shipping materials would come with the new phones. When I received the confirmation e-mail of my order, it contained a link for the rebate. Fortunately I clicked on the link, filled out the form online, and received the packing materials to send my phone in shortly after. My phones came in on Oct. 14th and I sent 3 of them back. So far I have received a gift card for $200 for 2 of the phones; the other is showing not received. I don't know what your situation is, but I think the promotion ended Oct. 15th. If I had listened to the salesman I think I would be out of luck as well. I hope I am wrong for your sake.

  • I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    Freezing, or crashing?
    ID on the Mac can produce reports that may (or may not) prove helpful in diagnosing the problem. I suspect this is something not directly related to InDesign, and maybe not to any of the Adobe apps directly since you seem to be having a problem in more than one. That often inidcates a problem at the system level.
    Nevertheless, it won't hurt to try to gather the reports. You'll find driections for how to generate them, and to post them on Pastebin.com (then put a link to them here) so we can see what's going on at Adobe Forums: InDesign CS5.5 Not Responding
    Do you happen to run a font manager? If so, which one, and waht version?

Maybe you are looking for

  • Can't access Windows 7 network nor homegroup via router or ad-hoc

    I have a really annoying problem. I have 2 clean computers. They were formatted and Win 7 ultimate was installed on both computers. They have a PCI wireless card (D-Link DWA 525). Their hardware is identical, same motherboard, etc, beside the "server

  • Not able to use a few apps

    I haven't been able to use a few of my apps for a few weeks.  I initially thought it was just a server issue.  However, my friends are able to use the same ones.  I have a 2nd generation Ipod Touch.  I know its old lol! I specifically haven't been ab

  • Add unique title and description to other Blog pages

    Hi, There's a few pages that I cannot work out how to add a unique title and description tag within the Blog. These are: The page numbers - in the footer of the Blog if you click page 2, 3, 4, etc eg: http://www.cardiotech.com.au/_blog/Latest_Fitness

  • Invoicing Problems

    Hello, I'm looking for away in pages to keep a running invoice number. Meaning If I do project for a company and start the invoice off at number 0001 can pages auto that number next time I do a project for them so it would go 0001, 0002, etc..... Or

  • Can't Sync Photos - iTunes 10.2.1 (PC), iOS 4.3 on iPhone

    Sync locks up on iTunes during final step, Importing Photos. "File can't be found." Craig.