I've an error that i can't let disappear

I want to read some data in from a text but i get an error now:
C:\testnetbeens\test\src\meting\TestFrame.java:122: unreported exception java.io.IOException; must be caught or declared to be thrown
data.add(new WeersMeting(date, city, temp));
TestFrame.java
package meting;
import meting.model.WeersMetingen;
import meting.model.WeersMeting;
import meting.view.JTableFrame;
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
public class TestFrame extends JFrame   {
    private JButton verslagButton;
    private JButton tabelButton;
    private JButton grafiekButton;
    private JPanel keuzePanel;
    private Font font;
    private Border border;
    private JFrame newFrame;
    private String date;
    private String city;
    private String temp;
     public TestFrame(String titel) throws IOException {
         super(titel);
         init();
         maakKeuzePanel();
         maakFrame();
         voegListenersToe();
         try    {
         String line;
         File inFile = new File("data.dat");
         FileReader fileReader = new FileReader(inFile);
         BufferedReader bufReader = new BufferedReader(fileReader);
         line =  bufReader.readLine();
         String[] elements= line.split(" ");
         String date= elements[0];
         String city= elements[1];
         String temp= elements[2];
         bufReader.close();
         catch (IOException e)  {
         Label tekstLabel = new Label();
         tekstLabel.setAlignment(Label.CENTER);
         tekstLabel.setFont(font);
         tekstLabel.setText("ONT8");
         add(tekstLabel);
         toonFrame();
     public void init()    {
         font = new Font("Sans Serif",Font.PLAIN,14);
         border = BorderFactory.createEtchedBorder(
                 EtchedBorder.RAISED, Color.blue, Color.black);
     private void maakKeuzePanel()    {
         keuzePanel = new JPanel();
         keuzePanel.setBorder(border);
         keuzePanel.setBorder(BorderFactory.createTitledBorder(border, "MAAK UW KEUZE"));
         ImageIcon icon = new ImageIcon("grafiek.gif");
         ImageIcon iconOver = new ImageIcon("images.gif");
         verslagButton = new JButton("Verslag");
         verslagButton.setHorizontalAlignment(SwingConstants.CENTER);
         verslagButton.setHorizontalTextPosition(SwingConstants.CENTER);
         verslagButton.setVerticalTextPosition(SwingConstants.BOTTOM);
         verslagButton.setFont(font);
         verslagButton.setMnemonic(KeyEvent.VK_V); //ALT-V
         verslagButton.setActionCommand("toonVerslag");
         //verslagButton.setEnabled(false);
         tabelButton = new JButton("Tabellen");
         tabelButton.setHorizontalAlignment(SwingConstants.CENTER);
         tabelButton.setHorizontalTextPosition(SwingConstants.CENTER);
         tabelButton.setVerticalTextPosition(SwingConstants.BOTTOM);
         tabelButton.setFont(font);
         tabelButton.setMnemonic(KeyEvent.VK_T); //ALT-T
         tabelButton.setActionCommand("toonTabel");
         //tabelButton.setEnabled(false);
         grafiekButton = new JButton("Grafiek", icon);
         grafiekButton.setRolloverIcon(iconOver);
         grafiekButton.setHorizontalAlignment(SwingConstants.CENTER);
         grafiekButton.setHorizontalTextPosition(SwingConstants.CENTER);
         grafiekButton.setVerticalTextPosition(SwingConstants.BOTTOM);
         grafiekButton.setFont(font);
         grafiekButton.setMnemonic(KeyEvent.VK_G); //ALT-T
         grafiekButton.setActionCommand("toonGrafiek");
         //grafiekButton.setEnabled(false);
         keuzePanel.add(verslagButton);
         keuzePanel.add(tabelButton);
         keuzePanel.add(grafiekButton);
     private void maakFrame()    {
         Container pane = getContentPane();
         pane.add(keuzePanel, BorderLayout.SOUTH);
     private void voegListenersToe()    {
         verslagButton.addActionListener(new ActionListener()   {
             public void actionPerformed(ActionEvent e) {
                 if (e.getActionCommand() == "toonVerslag") {
                     new VerslagFrame("tabel");
         tabelButton.addActionListener(new ActionListener()   {
            public void actionPerformed(ActionEvent e) {
                if (e.getActionCommand() == "toonTabel") {
                     WeersMetingen data = new WeersMetingen();
                     data.add(new WeersMeting(date, city, temp));
                     new JTableFrame(data);
         grafiekButton.addActionListener(new ActionListener()   {
             public void actionPerformed(ActionEvent e) {
                 if (e.getActionCommand() == "toonGrafiek") {
                     new GrafiekFrame("grafiek");
     private void toonFrame()   {
         setSize(450,280);
         Dimension d = getToolkit().getScreenSize();
         setLocation((d.width-getSize().width)/2,(d.height-getSize().height)/2);
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         pack();
         setVisible(true);
}main.java
package meting;
import meting.model.WeersMetingen;
import meting.model.WeersMeting;
import meting.view.JTableFrame;
* AWT Sample application
* @author
* @version 1.00 06/07/20
public class Main {
public static void main(String[] args) {
// Create application frame.
new TestFrame("OPDRACHT ONT8");
grafiekFrame.java
package meting;
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
import java.awt.event.*;
public class GrafiekFrame extends JFrame {
private Font font;
private Border border;
public GrafiekFrame(String titel) {
super(titel);
//init();
Label tekstLabel = new Label();
tekstLabel.setAlignment(Label.CENTER);
tekstLabel.setFont(font);
tekstLabel.setText("grafiek");
add(tekstLabel);
toonFrame();
//private void init() {
// font = new Font("Sans Serif",Font.PLAIN,14);
// border = BorderFactory.createEtchedBorder(
// EtchedBorder.RAISED, Color.blue, Color.black);
private void toonFrame() {
setSize(450,280);
Dimension d = getToolkit().getScreenSize();
setLocation((d.width-getSize().width)/2,(d.height-getSize().height)/2);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
pack();
setVisible(true);
}VerslagFrame.java
package meting;
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
import java.awt.event.*;
public class VerslagFrame extends JFrame {
private Font font;
private Border border;
public VerslagFrame(String titel) {
super(titel);
//init();
Label tekstLabel = new Label();
tekstLabel.setAlignment(Label.CENTER);
tekstLabel.setFont(font);
tekstLabel.setText("Verslag");
add(tekstLabel);
toonFrame();
//private void init() {
// font = new Font("Sans Serif",Font.PLAIN,14);
// border = BorderFactory.createEtchedBorder(
// EtchedBorder.RAISED, Color.blue, Color.black);
private void toonFrame() {
setSize(450,280);
Dimension d = getToolkit().getScreenSize();
setLocation((d.width-getSize().width)/2,(d.height-getSize().height)/2);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
pack();
setVisible(true);
}WeersMeting.java
package meting.model;
public class WeersMeting {
private String datum;
private String plaats;
private String temp;
public WeersMeting (String datum, String plaats, String temp) {
this.datum = datum;
this.plaats = plaats;
this.temp = temp;
public String getDatum() {
return datum;
public String getPlaats() {
return plaats;
public String getTemp() {
return temp;
}JTableFrame.java
package meting.view;
import meting.model.WeersMeting;
import meting.model.WeersMetingen;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableColumnModel;
import java.awt.*;
import java.util.List;
import java.util.Vector;
import java.io.Serializable;
public class JTableFrame extends JFrame {
private static final String[] koppen = {"Datum", "Plaats", "Temp"};
private DefaultTableModel model;
private JTable table;
private DefaultTableModel model1;
private JTable table1;
private JButton toevoegButton;
private JButton verwijderButton;
private JButton temp_ifv_tijdButton;
public JTableFrame(WeersMetingen weersmetingen) {
super("Metingen");
maakComponenten();
vulTable(weersmetingen.getData());
stelKolomBreedtesIn();
voegListenersToe();
maakLayout();
toonFrame();
private void maakComponenten() {
model = new DefaultTableModel();
table = new JTable(model) {
public Dimension getPreferredScrollableViewportSize() {
return getPreferredSize();
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
toevoegButton = new JButton("Voeg een meting toe");
verwijderButton = new JButton("Verwijder meting");
temp_ifv_tijdButton = new JButton("temp ifv tijd");
private void vulTable(List<WeersMeting> data) {
for (int i= 0; i < koppen.length; i++) {
model.addColumn(koppen);
Vector<Serializable> rijData;
for(WeersMeting weersmeting : data) {
rijData = new Vector<Serializable>();
rijData.add(weersmeting.getDatum());
rijData.add(weersmeting.getPlaats());
rijData.add(weersmeting.getTemp());
model.addRow(rijData);
private void stelKolomBreedtesIn() {
TableColumnModel columnModel = table.getColumnModel();
columnModel.getColumn(0).setMinWidth(70);
columnModel.getColumn(0).setMaxWidth(70);
columnModel.getColumn(1).setMinWidth(70);
columnModel.getColumn(1).setMaxWidth(100);
columnModel.getColumn(2).setMinWidth(40);
columnModel.getColumn(2).setMaxWidth(40);
private void voegListenersToe() {
toevoegButton.addActionListener( new ToevoegListener(table, model));
verwijderButton.addActionListener( new VerwijderListener(table, model));
temp_ifv_tijdButton.addActionListener(new Temp_Ifv_TijdListener());
private void maakLayout() {
JPanel panel1 = new JPanel();
panel1.add(toevoegButton);
panel1.add(verwijderButton);
JPanel panel2 = new JPanel();
panel2.add(temp_ifv_tijdButton);
JScrollPane scrollPane = new JScrollPane(table);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
Container content = getContentPane();
content.add(scrollPane, BorderLayout.PAGE_START);
content.add(panel1, BorderLayout.CENTER);
content.add(panel2, BorderLayout.PAGE_END);
private void toonFrame() {
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setLocation(0,0);
pack();
setVisible(true);
}[\code]
WeersMetingen.javapackage meting.model;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;
public class WeersMetingen {
private List<WeersMeting> data = new ArrayList<WeersMeting>();
public WeersMetingen() {
public WeersMetingen(List<WeersMeting> data) {
this.data = data;
public List<WeersMeting> getData() {
return Collections.unmodifiableList(data);
public WeersMeting getElementAt(int index) {
return data.get(index);
public void add(WeersMeting weersmeting) {
data.add(weersmeting);
public boolean remove(WeersMeting weersmeting) {
return data.remove(weersmeting);
ToevoegListener.java
package meting.view;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;
import java.io.Serializable;
public class ToevoegListener implements ActionListener {
private JTable table;
private DefaultTableModel model;
public ToevoegListener(JTable table, DefaultTableModel model) {
this.table = table;
this.model = model;
public void actionPerformed(ActionEvent e) {
int rowIndex = table.getSelectedRow();
Vector<Serializable> vector = new Vector<Serializable>();
vector.add("Datum");
vector.add("Plaats");
vector.add("Temp");
if (rowIndex != -1) {
model.insertRow(rowIndex, vector);
} else {
model.addRow(vector);
}VerwijderListener.java
package meting.view;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class VerwijderListener implements ActionListener {
private JTable table;
private DefaultTableModel model;
public VerwijderListener(JTable table, DefaultTableModel model) {
this.table = table;
this.model = model;
public void actionPerformed(ActionEvent e) {
int rowIndex = table.getSelectedRow();
if (rowIndex != -1) {
model.removeRow(rowIndex);
}Temp_Ifv_TijdListener.java
package meting.view;
import meting.model.WeersMetingen;
import meting.model.WeersMeting;
import meting.view.JTableFrameTemp_Datum;
import meting.TestFrame;
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.table.DefaultTableModel;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Temp_Ifv_TijdListener implements ActionListener {
public Temp_Ifv_TijdListener() {
public void actionPerformed(ActionEvent e) {
}my data-file should look like: (data.dat)
12/06/2006 Lanaken +31
13/06/2006 Lanaken +16
14/06/2006 Lanaken +0
15/06/2006 Lanaken -5
16/06/2006 Lanaken +16
17/06/2006 Lanaken +14

im not reading that novel you posted but id suggest 2 common sense things to you:
1 - READ THE ERROR FOR THE LOVE OF GOD
2 - perhaps there is an "unreported exception java.io.IOException;"
that maybe "must be caught or declared to be thrown" and maybe its on line ":122" ?
wrap a try catch block around any IO
try{
IO
}catch(Exception e){}

Similar Messages

  • I get an error that says can't connect to the itunes store when I search for a specific artist only

    Hi all,
    When I try to search for music by a specific artist in the iTunes store on my iPhone 5, I get an error that says "Can't connect to the iTunes store".  This only happens when I search for music by this band.  I can search for other artists and listen to song clips and everything seems to be connecting to the iTunes store just fine.  But for some reason, it doesn't work with this artist.  The band name is July for Kings.  Not sure if anyone else has had this issue, but I hope so!
    Thanks,
    Rick

    IF you are not able to resolve your issue then contact Apple Support at https://getsupport.apple.com/GetproductgroupList.do?caller=ikb&PRKEYS=PL220,1316 29,PL113,PL302,PF3,PF4,PF9,PL303,PL339,p…
    hopefully they can help. You may also be interested to know that for some reason it is just not available to a lot of people at the same time. Appears to be an issue of more users than their servers can handle. Has happened periodically for at least 6 months that I know of but apparently users are able to use within several days if there are no other issues with the users device.

  • When I ran the bootcamp assistance for software update I get an error that it can't download from the server

    Install Mac OS X lion fine without any issue
    I'm trying to dual boot Lion and Wind 7 on different HD but when I ran the bootcamp assistance for software update I get an error that it can't download from the server.
    I also try without downloading the software and do the installation but it fail. It seem that this bootcamp is giving problem so I revert back to SN leopard and it does the same. Why can't the bootcamp assistance update the software, is it something that I did wrong or my system is not supporting dual booting.
    Here is my spec
    Apple Mac Pro "Quad Core" 2.66
    Identifiers: Mac Pro - MA356LL/A - MacPro1,1* - A1186

    MacPro1,1 has EFI32 and does not support Windows 7 very well, can't boot 64-bit, can't use all your RAM.
    There have always been trouble and issues, ways around those, but a big PITA too.
    Select CD-ROM Boot
    Select CD-ROM Boot Error Apple
    Nothing to do with Lion actually. Other than downloading drivers from Apple servers has been mostly hit or miss, with miss being 90%.
    I have rebuned the DVD (make a new ISO image using Imgburn etc) but now I just install Windows on PC then move the drive to the Mac. A lot easier.
    Without 64-bit you can't use more than 1.9GB RAM. And you need Windows 7 Pro to use both processors.

  • I am getting an Narration error that I can't record because one of the record-enabled tracks is locked in the timeline. What does this mean and how do I get out of it??

    I am getting an Narration error that I can't record because one of the record-enabled tracks is locked in the timeline. What does this mean and how do I get out of it??

    JohnL23
    Thanks for the update.
    There are several Adobe Premiere Elements Forum threads about situation such as the one that you have encountered. Typically they are the results of some heavy activity in the narration track.  Some have found success in maneuvers between the Expert and Quick workspaces in versions 11 and 12 or Timeline and Sceneline workspaces in versions earlier than 11. That is why I mentioned that type of factor in a prior post in your thread.
    If that is not working, then we are forced into the new project where the problems in the current project are not presenting.
    I will do a search for the threads that I am recalling about your type of issue. But, right now all roads seem to head to the new project. But I would ask "Can you salvage this project by creating your narration clips in Audacity or a new Premiere Elements project and import them into this project, putting the clips on one of the numbered audio tracks?"
    If the problem should reappear in the new project, please let us know including the details of what was going on immediate before the problem surfaced.
    Thanks.
    ATR

  • I keep getting the error that I can't login into the itunes store...

    I've been trying to purchase a movie through my appletv, but whenever I put in my itunes username and password it is giving me the error that they can't access the itunes store right now and to check back later...help!

    This is an Apple issue, tested mine from FiOS and Comast, same errors, iPad, phone, AppleTV

  • The vfs_fsevents.c file is kicking out errors that I can not figure out.

    I get errors that I tracked back to the vfs_fsevents.c file. But I can not figure out of these are errors I need to worry about or just random. Below are the errors that I am getting.
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unable to get path for vp 0xdc8eafc (tmp.live.6.cmpt..mds.101.96.compactPayloads2.idx; ret 22; type 4)
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unabled to get a path for vp 0xdc8eafc.  dropping the event.
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unable to get path for vp 0xdd47158 (tmp.live.6.cmpt..mds.101.95.compactPayloads1.idx; ret 22; type 4)
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unabled to get a path for vp 0xdd47158.  dropping the event.
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unable to get path for vp 0x173da534 (tmp.live.6.cmpt..mds.101.97.compactPayloads1.idx; ret 22; type 4)
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unabled to get a path for vp 0x173da534.  dropping the event.
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unable to get path for vp 0xbeabd7c (tmp.live.6.cmpt..mds.101.98.compactPayloads2.idx; ret 22; type 4)
    5/9/12 12:59:12.000 PM kernel: add_fsevent: unabled to get a path for vp 0xbeabd7c.  dropping the event.
    5/9/12 1:00:51.000 PM kernel: add_fsevent: unable to get path for vp 0x17ebc280 (journalAttr.231; ret 22; type 4)
    5/9/12 1:00:51.000 PM kernel: add_fsevent: unabled to get a path for vp 0x17ebc280.  dropping the event.
    If anyone can point me in the right direction I would appreciate it.
    Thanks,
    Kevin Rosenthal

    Melissa,
    Yes, I now see the WAB area. Because of the horizontal tightness of the screen cap, I missed this.
    I do not have any experience with the RADEON X600, but maybe someone else knows it. My first thought would be a display driver issue with the video card. You can find out what drivers you have by following the links below. Just substitute Display Adapters for Human Interface Devices. You might go to the ATI site and see if they offer a newer driver for your video card. These get out of date in a hurry.
    As for the mouse driver there are two ways to check this out:
    1.) Control Panel>System>Hardware>Device Manager>Human Interface Devices>[Name of mouse and connection] Mouse Optical (if it is Optical)>Driver>Driver File Details. There, you will see all drviers associated with your mouse.
    2.) From the My Computer setting, search for Intelli* in Files & Folders. This will find all instances of the IntelliPoint driver. If you have it installed, then go back and do #1 above to check to see if it is in use.
    Now, all of the GUI display problems I've read of in a myriad of Adobe programs have been different, than yours. That idea is but a shot in the dark. Now, with Adobe and display issues, I normally think of Intellipoint mouse drivers. You might try changing drivers to the stock MS Windows\System32 drivers and see what happens. You might loose a touch of functionality of a multi-button/tilt-wheel mouse, if you have one, but it *might* take care of GUI issues.
    I've been hoping that someone else would chime in with "hey, that's just the xxx, don't you recognize it?" So far, no one has.
    Hunt

  • I replaced my hard drive on my late 2006 Macbook Pro.  I tried to do a reinstall of Tiger 10.4.5 from my start up disk.  I get an error that states "can't install on this computer." HELP

    I replaced my hard drive on my late 2006 Macbook Pro.  I used the disk utility and erased the drive and formatted it to OSX Journaled .  When I tried to install the OS from the start up disks I got the error "Can't install on this computer.  I have verified the drive.
    I have used Super Duper to copy my old drive to my new drive.  But I wanted to do a fresh install.  How do I go about this? 

    Did you do the Super Duper clone before you tried to reinstall the OS? If so, the original install disc is likely earlier than 10.4.11, and that may be why you are getting the message.
    When trying to reinstall the OS, did you select the "Archive and Install" option? If not, you might try that. Here's a link that might help:
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh1103.html
    Good luck!

  • Errors that I Can't get rid of?!

    Hello, I'm new to this community and have a question. Not sure if this is the right place to ask, but it's worth a try. So, I got a call from lenovo inc. somewhere in New Jersey (let's be serious please) and they told and showed me that there are a bunch of windows (I have windows 7 by the way) errors on my laptop and that my laptop is corrupt. They showed me by having me type something in a program called run. I could not delete those errors once I saw them, and they also thowed me the corrupt errors/files on the command prompt by typing in something. They said the only solution was for me to buy some security, which I don't remember what it was, but it was a while ago and it had all these plans and was very expensive ranging from like $200-$500. They said if I don't get it then there is a huge risk of hackers stealing my identity/information. They said this is the only way to get rid of it. Now, I am wondering if there is any other free way I can get rid of the errors/corrupt files wthout having to pay so much or without even paying anything at all. I could also be scammed if I had bough the security who knows, but I did see a lot of errors on the program run and I think on cmd, it said my laptop/system was like 80-90% corrupt or something like that. Now, I want to get rid of all these errors and corruption and don't want hackers anywhere near my personal information. How do I do that? Please help. Thank You!

    This is a scam.
    Neither Microsoft, nor any computer hardware manufacturer (Lenovo, in your case) monitors your system for errors... nor will they ever call you (on their own) to advise you as such.
    Most likely, they had you open the Event Viewer, which WILL display many "errors"... all of which are normal and expected.
    If you did not allow the caller to take remote control of your system, you should be safe from their shenanigans.   It must now be determined whether the so-called "errors" on your system are something that really needs to be addressed by a malware expert, or whether they're routine "warnings" that can be safely ignored.   I will leave that matter for someone else, better-qualified, to address.
    Windows 7 Pro SP1 (64-bit), avast! V7 Free, MBAM Pro, Windows Firewall, EMET, OpenDNS Family Shield, IE9 & Firefox (both using WOT & KeyScrambler), MVPS HOSTS file, SpywareBlaster, WinPatrol PLUS, SAS (on-demand scanner), Secunia PSI.
    [I am experimenting with Sandboxie, and believe computer-users who sandbox are acting prudently.]

  • Spybot causes firefox to give errors that it can't access some sites, even though other browsers still can; I reported the error to you before I knew.

    Just letting you know I found the problem. I did not see that that fix was already reported anywhere.

    Using the Firefox immunize with Spybot can cause problems. It dumps hundreds of block items into the permissions and really slows things down.

  • I get the error that iTunes can't load 32-bit plugins

    I get the following error when iTunes loads:
    Several plug-ins, including “eXo”, could not load in 64-bit mode.
    I've gone to the iTunes Plugin folder, ~/Library/iTunes/iTunes Plug-ins, and deleted the files there, but I'm still getting this error message. I can't find any other plug-in folders, so where are these hiding at? I've tried searching for 'eXo' and couldn't find it.

    Hello kedamono,
    Plugins can also be located in /Library/iTunes/iTunes Plug-ins/
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/kb/TS3430
    Cheers,
    Allen

  • Disk error that I can't repair despite logical steps

    1. I ran Disk Utility within OSX and detected a disk error but the option to repair was grayed out
    2. I ran my back up system to ensure I have an up-to-date clone on my LaCie external HD
    3. I booted Norton Utilities from CD which couldn't repair the error
    4. I ran Apple Hardware Extended test which said there were no hardware problems
    5. I began wondering if it was a software issue rather than a hardware one...
    6. I booted Disk Utility from my Tiger Install DVD which also detected a disk error but could not fix it
    7. Thinking that reinstalling Tiger might do the trick, I tried to 'Archive and Install' Mac OS X Tiger from the DVD twice, but each time it was unable to complete the install and asked me to start over again
    Any ideas how to fix this error?
    I am working quite intensively with iMovie at the moment, which crawls on my 3 year old 1 GHz PowerBook. One file has grown to a whopping 18 GB in size. Could this be part of the problem? I performed permissions repair, disk verification and defrag successfully last week before starting on my iMovie project, so the system was pretty well optimised, I thought.

    Thanks, Miriam. I regularly run Utilities to ensure my system stays in good condition. Especially as I work with images a lot and sometimes - like now - with video. So, it was routine maintenance I guess. However, some applications have been a little slow to open or struggled to open files recently as well.
    Regarding Disk Warrior etc, being an individual rather than a corporate user, obviously I'd rather avoid spending the money unless I absolutely have to. In addition, being in UK, it may take time for the disk to arrive and I don't think my nearest Apple Store stocks Disk Warrior - it's not on the UK online store anyhow (strangely). TechTool Pro is more expensive still. Sorry if I sound stingy, I just am being careful with my money. If I need to buy Disk Warrior, of course I will.
    Thanks, A Brody, for the welcome. I regularly clone my entire system so I have a bootable backup, but thanks for the reminder anyway!
    I appreciate the comments from both of you about Norton in this regard.
    Since the Apple Hardware Extended test indicated no hardware faults, am I right to think it is probably more to do with software? Or should I be concerned about my hard disk or other hardware?
    PowerBook G4   Mac OS X (10.4.5)   1 GHz PowerPC G4 | 1 MB L3 cache | 768 MB DDR SDRAM

  • Billing errors that operators can't understand

    This is really simple. I've called four times, four different reps, and nearly 4 different answers. I started with Double Play in June. had some connectivity issues. Called, got them resolved, and was offered Triple Play for nearly same rate as Double. Two billing cycles I am still billed for Double Play. This cycle, its fixed. I am billed the correct amount for Triple for 8/4 - 9/3. Then billed $37 for Double for the same time frame. In another section, I am charged a corrected prorated amount for Triple for the last 42 days I was billed for Double. Then I was credited the 42 days of Double. However, I was credited at a monthly rate of $62 for Double Play. The issue was I was charged $99 for Double....not $62. Still looking for phone rep that can do the math and credit me the correct amount and credit back the Double Play charge for this month. I can read and do math....can these call centers do the same.

    When the regular customer service reps can't help, try one of these:Send an email to the team at "[email protected]". Include:
        Account number
        Full name
        Service address
        Best contact phone number and best time to call
        A description of the problem
    One of their problem resolution specialists should contact you to follow up, usually by phone. They seem to be quite a bit sharper than the regular reps.-OR-Use the feedback form at http://customer.xfinity.com/help-and-support/vp-contact-form.You might also try Twitter (https://twitter.com/ComcastCares/) and Facebook (https://www.facebook.com/Xfinity).
    Comcast sometimes responds to questions here in the forums, and sometimes they do not. When they do the typical response time is somewhere between a few hours and a few days.

  • On my iPad and iPhone I am getting errors that it can't get the Yahoo! mail to go through, it won't verify the data.

    I can't get mai on the iPad or iphone (and maybe the macbook pro) from Yahoo!. It won't verify the info and has me to authenticate using safari. I hav a PLUS account, have deleted and restarted a new account, but no verif. It used to work, but has quit. Especially worse since running iOS 5. Apple is scheduled for expresslane for 4 - 5 days out. I don't have a current phone number for Yahoo! or I'd be bugging them. It just won't verify even after changing passwords. GMail and iCloud work fin. Any ideas ?

    Bwilbraham-
    Is your iPad able to access the internet using Safari?  If not, I suggest you unplug your WiFi router for a few seconds.  Then reset the iPad's network at Settings-General-Reset-Reset Network Settings.  You will need to reconnect the iPad to WiFi.
    If you are able to access the internet, then there may be a glitch in your iPad Mail setup you are overlooking.  It could be something like the letter O where a zero should be, a space where none is allowed or a backward slash (\) where a forward slash (/) is required.
    One other thing you can try, is to reset (reboot) your iPad.  Hold both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  The iPad will restart after a couple of minutes.  Resetting this way will not hurt anything, and sometimes clears up mysterious problems.
    Fred

  • When upgrading iTunes I get an error that says can't find iTunes.msi. I get the same error when I try to uninstall itunes. I am using XP

    How do I find iTunes,msi to upgrade or uninstall itunes?

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • HT4528 My phone is not responding. I have (1) backed up my phone (2) tried to restore my phone reset it . goes through the prompts then gets an error that it can't finish because of error. problem was lock code forgotten.

    Phone was locked couldnt remember code. tried to reset phone. now unresponsive.

    sounds like your phone was jailbroken.

Maybe you are looking for