Please help! not serializableException: im not sure why!

hello all,
im using a JTable and would like to save the information in the table. whe the user presses the save button, i would like to call my save methods, but i end up with a serializable exception on my filfilter. I am not sue why this occurs, so im hoping someone could tell me. My code calling the save method is below, any help is most appreciated, thats.
java.io.NotSerializableException: FileOperations$MyFileFilter
private FileOperations fileOp;
fileOp = new FileOperations(this);
saveItem.setAccelerator(KeyStroke.getKeyStroke('S',ActionEvent.CTRL_MASK ));
saveItem.addActionListener (new ActionListener () {
public void actionPerformed (ActionEvent e) {
     fileOp.saveFile();
import javax.swing.*;
import javax.swing.table.*;
import javax.swing.filechooser.FileFilter;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import java.awt.print.*;
public class FileOperations {
     final private static String extenstion = ".tm";
     private MySpread mySpread;
     private MyNewTable table;
     public myTableModel tableModel;
    private File file;
     private StringTokenizer tokenizer;
   public PrintStream out;
   // private ObjectOutputStream out;
      private ObjectInputStream out1;
    private BufferedReader in;
    private transient JFileChooser fileChooser;
    private transient MyFileFilter filter;
     class MyFileFilter extends FileFilter{
            public boolean accept(File file){
                return (file.isDirectory()||file.getName().toLowerCase().endsWith(extenstion));
          public String getDescription() {
         return "Spreadsheet (*.tm)";
    public FileOperations(MySpread gui) {
          mySpread = gui;
          table = mySpread.getTable();
          tableModel = mySpread.getTheTableModel();
          fileChooser = getFileChooser();
          filter = new MyFileFilter();
          fileChooser.addChoosableFileFilter(filter);
          mySpread.setTitle("Untitled");
     private JFileChooser getFileChooser() {
            if (this.fileChooser == null) {
           this.fileChooser = new JFileChooser(new File("."));
       } return this.fileChooser;
         public int querySave() {
     // show confirm dialog box from static JOptionPane method
     String filename = "Spreadsheet";
     if (file != null)
         filename = file.getName();
     int choice = JOptionPane.showInternalConfirmDialog(mySpread,"Do you want to save the changes you made to \""+filename+"\"?",
          "Save",
          JOptionPane.YES_NO_CANCEL_OPTION,
          JOptionPane.QUESTION_MESSAGE);
     // return user's choice
     return choice;
    public  void saveFile() {
         if (tableModel == null){System.out.print("ross");}
     if(tableModel.isChanged()) {
          System.out.print("tm has changed");
         if (file == null) {
          saveAsFile();
         } else {
          saveTableModel();
    System.out.print("tm has not changed");
     public void saveAsFile() {
     // open save dialog and save user input
     int choice = fileChooser.showSaveDialog(mySpread);
     // if user clicks ok, then procede with save, otherwise do nothing
     if(choice == JFileChooser.APPROVE_OPTION) {
         // get selected file to save to
         File selectedfile = fileChooser.getSelectedFile();
         fileChooser = new JFileChooser(selectedfile.getParentFile());
         fileChooser.addChoosableFileFilter(filter);
         // enforce the extenstion name
         String path;
         try {
          path = selectedfile.getCanonicalPath();
         catch (IOException e) {
          JOptionPane.showMessageDialog(mySpread, "Save","Unexpted Error",
                           JOptionPane.ERROR_MESSAGE, null);
          return;
         if (!path.endsWith(extenstion))
          selectedfile = new File(path+extenstion);
         // check the existence of the file
         if (selectedfile.exists()) {
          choice =
              JOptionPane.showInternalConfirmDialog
              (mySpread,
               "File "+selectedfile.getName()+" already exists.\n\n"+
               "Do you want to overwrite it?\n\n",
               "Save",
               JOptionPane.YES_NO_OPTION,
               JOptionPane.WARNING_MESSAGE);
          if (choice != JOptionPane.YES_OPTION)
              return;
       //  saveTableModel(selectedfile);
         writeDataTable(selectedfile);
         file = aFile;
           tableModel.setChanged(false);
         String title = file.getName();
         if (title.endsWith(extenstion))
          title = title.substring(0, title.length()-4);
         mySpread.setTitle(title);
     } catch (FileNotFoundException e) {
         JOptionPane.showMessageDialog(mySpread,"Open", "File \""+aFile.getName()+"\" not found!",JOptionPane.ERROR_MESSAGE, null);
     } catch (IOException e) {
         JOptionPane.showMessageDialog(mySpread,"Save", "File \""+aFile.getName()+"\" cannot be created!",JOptionPane.ERROR_MESSAGE, null);
    private void writeDataTable(File selectedFile)   {
             ObjectOutputStream oos = null;
              try { 
                oos = new ObjectOutputStream(new FileOutputStream(selectedFile));//only write out the models header plus data 
             //   oos.writeObject(model.getColumnIdentifiers());     
                oos.writeObject(tableModel.getDataVector());   
              }      catch (Exception e)   {   
                    e.printStackTrace();   
                finally      { if (oos != null){  
                      try{   
                     oos.flush();    
               catch (IOException ioe){}; 
                try{   
                      oos.close();   
                 catch (IOException ioe){};  
//           file = aFile;
file = selectedFile;
           tableModel.setChanged(false);
         String title = file.getName();
         if (title.endsWith(extenstion))
          title = title.substring(0, title.length()-4);
         mySpread.setTitle(title);
      }     //end writeDataTable
     if(tableModel.isChanged()){
          System.out.println("i get here. open file, tm is changed \n");
         choice = querySave();
     else
         choice = JOptionPane.NO_OPTION;
     System.out.println("i get here. open file, tm has notchnaged changed \n");   
     switch(choice) {
       case JOptionPane.YES_OPTION:
           // if user chooses yes in dialog box, save document first
           // before executing clear range
           saveFile();
         case JOptionPane.NO_OPTION:
           // open dialog from filechooser and save user choice
           int userChoice = fileChooser.showOpenDialog(mySpread);
           // if user chooses file, call openTableModel on new
           // FileOperations object, else go to break in default
           if(userChoice == JFileChooser.APPROVE_OPTION) {
            File selectedfile = fileChooser.getSelectedFile();
            fileChooser = new JFileChooser(selectedfile.getParentFile());
            fileChooser.addChoosableFileFilter(filter);
            loadModel(selectedfile);
           break;
    public void saveTableModel() {
     writeDataTable(file);

Hi - thanks for your replies.
my table is clas is below. also is the full error i get. I hope you can help with this, im honestly quite confussed.
import javax.swing.*;
import java.awt.*;
import javax.swing.event.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.table.*;
import java.io.File;
import javax.swing.border.*;
public class MyNewTable extends JTable {
     public MyNewTable (int x, int y){
          super(x,y);
     public void setValueAt(Object aValue, int row, int column) {
          System.out.println("t\ble value being set");
          TableModel mod = getModel();
          mod.setValueAt(aValue, row, column);
}full error
java.io.NotSerializableException: FileOperations$MyFileFilter
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at javax.swing.JFileChooser.writeObject(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeArray(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at java.awt.Container.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeArray(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at java.awt.Container.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeArray(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at java.awt.Container.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeArray(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at java.awt.Container.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.awt.Window.writeObject(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at javax.swing.event.EventListenerList.writeObject(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at javax.swing.JTable.writeObject(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at javax.swing.event.EventListenerList.writeObject(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeArray(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at java.util.Vector.writeObject(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeArray(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
        at java.util.Vector.writeObject(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at FileOperations.writeDataTable(FileOperations.java:182)
        at FileOperations.saveAsFile(FileOperations.java:126)
        at FileOperations.saveFile(FileOperations.java:73)
        at MySpread$12.actionPerformed(MySpread.java:185)
        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
        at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknow
n Source)
        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Sour
ce)
        at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)
tm has not changedjava.lang.NullPointerException
        at javax.swing.plaf.basic.BasicTableUI.getPreferredSize(Unknown Source)
        at javax.swing.JComponent.getPreferredSize(Unknown Source)
        at javax.swing.ScrollPaneLayout.layoutContainer(Unknown Source)
        at java.awt.Container.layout(Unknown Source)
        at java.awt.Container.doLayout(Unknown Source)
        at java.awt.Container.validateTree(Unknown Source)
        at java.awt.Container.validateTree(Unknown Source)
        at java.awt.Container.validateTree(Unknown Source)
        at java.awt.Container.validateTree(Unknown Source)
        at java.awt.Container.validate(Unknown Source)
        at javax.swing.RepaintManager.validateInvalidComponents(Unknown Source)
        at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknow
n Source)
        at java.awt.event.InvocationEvent.dispatch(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)
java.lang.NullPointerException
        at javax.swing.plaf.basic.BasicTableUI.paint(Unknown Source)
        at javax.swing.plaf.ComponentUI.update(Unknown Source)
        at javax.swing.JComponent.paintComponent(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JViewport.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JLayeredPane.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paintWithOffscreenBuffer(Unknown Source)
        at javax.swing.JComponent.paintDoubleBuffered(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at java.awt.GraphicsCallback$PaintCallback.run(Unknown Source)
        at sun.awt.SunGraphicsCallback.runOneComponent(Unknown Source)
        at sun.awt.SunGraphicsCallback.runComponents(Unknown Source)
        at java.awt.Container.paint(Unknown Source)
        at sun.awt.RepaintArea.paint(Unknown Source)
        at sun.awt.windows.WComponentPeer.handleEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)Thanks

Similar Messages

  • Flashing of MSI Z87-GD65 GAMING failed and dual bios not helping, not sure why?

    Hi all
    For the first time in 20 years Ive had a firmware flash fail it seems.
    I have a MSI Z87-GD65 GAMING and updated the bios with the latest firmware via the "M-FLASH" utility within the systems bios.
    All seemed to have gone well, it flashed to 100% rebooted and then just a blank screen and a sequence of keyboard light flashes.
    After a minutes panic I thought not to worry, the motherboard has a dual bios.   So I powered down and switched the bios switch to bios B hoping it would assist and the problem is identical.
    Any tips anyone?

    I just tried this along with removing power from the main board and it seems one of the two did it!   thanks

  • Please Help Not sure About Something!!!!!!!!

    How do you get photos from 2 different folders?
    When i get photos from a folder all that happens is get it from 1 folder if i try to get photos from another folder it will just say... deleting photos (at the top of the page when ipod is flashing red on the side of itunes) then it says updating ipod. So I just end up with photos from one folder and the other ones are gone. I know this is a stupid question but i'm only 12!

    You can only update photos from one folder (but it can contain nested folders). You would have to put all the photos in one folder or make an iPod Pictures folder or something similar and put the pictures/folders you want in there. You could also put the two folders in one folder and then update from the one folder (that contains those two folders).
    If you want to be able to update from multiple folders, tell Apple...
    iPod Feedback
    btabz

  • My photoshop cs6 seems to be running very slow lately--not sure why? [was:question-please help]

    My photoshop cs6 seems to be running very slow lately--not sure why?

    Have you tried resetting your PRAM?
    Shut the Mac down.
    Holding the Cmd+Opt+P+R keys, press the power button.
    Listen for the "startup chime" to sound three times and release the keys.
    It should run better after it finishes booting up.

  • TS3074 Hello anyone with Windows 7, not sure why having followed instructions above, install of latest version of itunes won't work and can no longer open old version either.  anyone help with this?

    Hello anyone with Windows 7, not sure why having followed instructions above, install of latest version of itunes won't work and can no longer open old version either.  anyone help with this?

    Hi,
    thanks for your reply.
    Yes, except n°1 - empty Temp directory, I had tried/checked all of those.
    I emptied the local temp folder tonight, but it still won't work.
    Please note: the installation doesn't give me any problem. The program was working fine, until at one point *plouf* it stopped working. I can re-install it without any problem, it just crashes when opening.
    \\edit\\ I seem to have located the problem, it's in the library files. If I re-install iTunes without my library, it works fine (though there is no music in it, yet). As soon as I import my library, or replace the My Music\iTunes folder with the old one, it stops working.

  • Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.

    also say explorer not reading SWF files and I have to reload them? Not sure what that is either,
    Thanks
    Jim

    Hi Nancy
    Trying to update my site got to make some changes.  Do you work on sites via remote? I am on Cloud.
    : Nancy O. 
    Sent: Monday, September 01, 2014 3:47 PM
    To: James Neidner
    Subject:  Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    created by Nancy O. <https://forums.adobe.com/people/Nancy+O.>  in Dreamweaver support forum - View the full discussion <https://forums.adobe.com/message/6692200#6692200>

  • Servlets can't access Oracle9i database - not sure why?

    Hi there,
    I got an error when it throws a SQLException in my Internet Explorer.
    Error:
    ======
    SQLException: Io exception: The Network Adapter could not establish the connection
    Is it bcs i uses scott/tiger?
    I places classes12.zip into c:\oraclejdbc
    and place this in my classpath:
    .;c:\oraclejdbc\classes12.zip;
    *Note: I places classes12.jar (also can't work)
    Then for a backup reason
    I go to C:\Tomcat5\common\classes
    and extract the classes12.zip in there
    i can see javax and oracle folders
    Then.. i make sure in my java codes (no compile error)
    java:oracle:thin@wenching:1521:wenching
    i was pointing to the right pc name and oracle server ID.
    Then i call my servlets into my j2me phone...
    it display all the necessary information.. on the data that should be extracted from the oracle 9i database.. display java.sql.SQLException...
    There are something wrong?
    Can you tell me what i left out? My servlets are working fine?
    But i had 2 java files...
    WebPage.java calls OracleConn.java
    and in web.xml
    i only point to WebPage.class and nothing to do with OracleConn (it is just connection classes).
    Any help, please?
    I also use lots of ways like placing classes12.zip or classes12.jar into many types of folders? Just not sure why cannot?
    I did not use the build in Tomcat for Oracle, but the latest Tomcat 5 series. The servelts works fine but not oracle. Could it be this problem? Like allowing which oracle database to call which web server?
    Thanks.

    It works?
    After i try this and that.
    I just notice 1 thing...
    The database is not connected physically.. even i can sql plus.. it!
    So i go to Oracle Database Admnistrator for Windows NT..
    and connect my servername WenChing..
    and now it works.. servlets can connect to oracle...
    Hooray!
    I hope it stills work when i reboot my machine.. coz i had no idea what i did... :)
    Sounds funny isn't it?
    Regards.
    Chua Wen Ching :p

  • I received a text today while at work about iCloud keychain verification code. I have not signed up for it or anything that uses it. I work out of the city with limited internet access so not sure why I would be getting this. Is my info safe??

    I received a text today while at work about iCloud keychain verification code. I have not signed up for it or anything that uses it. I work out of the city with limited internet access so not sure why I would be getting this. I only got this number about a month ago. Apparently someone else had the number before because I get texts from his family members wondering whats going on. I got one yesterday and the person didn't seem to thrilled that the number was cutoff and today I got 2 texts about iCloud Keychain which I don't even know what it is. Seems suspicious to me. If the person who use to own the number is doing it he should know it is not his number anymore because he obviously didn't pay his bills.  I'm not too sure about iCloud Keychain so just want to know my info safe?? It says it can store credit card numbers which is what gets me worried. Frankly I think it's pretty stupid to save that kind if information with any kind of app. But I don't want some random person trying to access my personal information because they are bitter they lost their number.  Please let me know as soon as possible so I can change passwords or anything that is needed.
    thanks

    If it were me, I would go to my carrier and get a new number. Since you have only had it for a month, the inconvenience would be minimal.
    Barry

  • Not sure why but when i open a new tab my top sites are no longer showing not even a toggle switch it's just one big blank white page? how can i correct this ?

    i did have my most visited sites in the pin ups yet for some reason or other not sure why but not when i open a new tab all there is, is one big blank white page. Not a toggle switch not even blank pin up thumb nails. Any help would be greatly appreciated. thank you

    See this old question:
    *[https://support.mozilla.org/en-US/questions/982051#answer-517878 /questions/982051#answer-517878]

  • Windows vista not recognizing my iphone4s when i open itunes, keep getting trust / dont trust message on phone and always press trust. Not sure why it's started doing it. Can not synch iphone at all or add new music....aaahhh

    windows vista not recognizing my iphone4s when i open itunes, keep getting trust / dont trust message on phone and always press trust. Not sure why it's started doing it. Can not synch iphone at all or add new music....as itunes does not pick up the phone I have connected anymore. My ipod synchs fine still and thats over 6 years old!

    Hi rubicon7,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    If the issue is not resolved, you may need to uninstall iTunes and all of it's components, and reinstall the latest version as explained in this article:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    I hope this information helps ....
    Have a great day!
    - Judy

  • Photos from the Internet will not load correctly. I get white boxes with blue question marks inside. This has only been happening for the past 3 weeks so I'm not sure why it is happening.

    Photos from the Internet will not load correctly. I get white boxes with blue question marks inside. This has only been happening for the past 3 weeks so I'm not sure why it is happening.

    Yes - email &amp; text work fine but when I use something like Google Images or search a blog with imbedded photos I get the empty white boxes with question marks.  If I click the question mark it opens the photo but I can't possibly do that for EVERY image on EVERY page I search!?!?!  I've rebooted the iPad &amp; my wireless card several times but neither action helped.  Have any clue what I should do now?

  • Podcast only displaying 2 episodes not sure why older episodes do not appear in itunes store?

    Good evening!
    Hope all is well. My podcast currently has 40 episodes, but only the most recent 2 episodes are being displayed in the itunes store. Not sure why all of them are not displayed for download? Can you please investigate?
    http://itunes.apple.com/us/podcast/parenthood-podcast/id489620970
    Feedburner: http://parenthoodpodcast.com/feed
    Thanks in advance for your time!
    Best ~ Ted

    Good evening!
    Hope all is well. My podcast currently has 40 episodes, but only the most recent 2 episodes are being displayed in the itunes store. Not sure why all of them are not displayed for download? Can you please investigate?
    http://itunes.apple.com/us/podcast/parenthood-podcast/id489620970
    Feedburner: http://parenthoodpodcast.com/feed
    Thanks in advance for your time!
    Best ~ Ted

  • My iphone5 crashed Wed May 29 and I am not sure why.. I had to do a restore and have been trying to slowly get everything back on the phone... Yesterday June 6 it blacked out once and I don't have everything on the phone as before.... New one?

    My iphone5 crashed Wed May 29 and I am not sure why.. I had to do a restore and have been trying to slowly get everything back on the phone... Yesterday June 6 it blacked out once and I don't have everything on the phone as before.... Is it damaged and should I try to get a new one?

    Thank you again for all of your help!! I really appreciate it!
    I think I am following -- I was able to upload to my iPhoto and all photos and videos are there that is a plus! I tried to create an Event in my iPhoto and put all of my photos in that event but for some reason, now my iTunes it not recognizing that Event in my iPhoto. It is not allowing me to import just that event at the moment but I may be doing something wrong. At least all of my pics and vids are in iPhoto so that is a plus and I know they are at least saved somewhere. Just for some reason, my iTunes it not locating the event that I created with only those photos.
    Thank you for letting me know about my contacts! How do I know if I have the contacts app?
    Also, I had no clue that my iCloud could be backed up via cellular data! However, is this a new feature with the most updated iOS?? Unforutnatly I am like 2 iOS updates behind because I don't have enough storage on my phone. I still get the notification that my phone needs to be plugged in and connected to wifi in order to back up to the cloud :-(
    How can I sync using USB? Right now when i click on the info tab for my iPhone in my iTunes this is the answer that I get -- I am a little unclear as to what it means.
    Sync Contacts:
    Your contacts are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone
    Sync Calendars:
    Your calendars are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone

  • Image size is being reduced - not sure why?

    Help! I have edited a slew of images and need to print them to large prints (over 24x30). When I export the images, the size is 11 x 14. The original files are HUGE - I am not sure why the size is being compressed. I am sure it is a simple fix but I don't know what that is.
    I have a Mac OS X and Lightroom 3.
    Any help would be greatly appreciated! Thank you!
    Angie

    Did you crop the image? Did you set the output size in pixels in the export dialog box?
    A 5184x3456 original cannot be printed at 24x30 because the aspect ratios do not match. The fact that the aspect ratios of 4264x2843 and 24x30 match indicates that you cropped the photo. But you cannot print 4264x2843 at 24x30 at 360 ppi (not dpi) because there aren't enough pixels in the photo. 24x30 at 360 ppi is an image that is 8640x10800 and you don't have that many pixels. You can still print it at 24x30, but at a much lower ppi.

  • Audio in iMovie files is now Gone :-(!! Not sure why?

    I have been using iMovie for a few years and love it. Recently none of my video files have any audio. Not sure why and if I did something wrong.
    in Final Cut Pro X (I hate it!) the video is fine, also fine in Quicktime.
    Anyone have any suggestions as to what I may have done wrong or any suggestions?

    Thx Much AppleMan,
    I appreciate the quick help.
    Nothing has changed since I started using iMovie '09 2-3 years ago. Something is very wrong. All the videos in my iMovie had audio, now many do not.
    I have a hunch I have clicked something I should not of....
    Wish someone could help with why I no longer get audio when importing to iMovie, when all worked perfectly in the past.

  • I am using dreamweaver cs6 and none of the menu's are showing up like the common, form, layout, spry etc...not sure why?

    i am using dreamweaver cs6 and none of the menu's are showing up like the common, form, layout, spry etc...not sure why?

    Which version of CC -- 13, 2014, or 2014.1?  You'll find it under the Help menu > About DW.
    Spry Menus are gone.
    Color is something you add with CSS.
    Nancy O.

Maybe you are looking for

  • Has anyone tried CrossOver Mac?

    If there was a thread about this some where, I missed it. But, I'm just curious if anyone has tried the beta of the new program CrossOver Mac, which allows you to run Windows applications natively in OS X without actually running windows. codeweavers

  • HR- Attendance Problem related to payroll program

    Hello Experts,                     I have created the zreport from attendance in HR-payroll ( Tcode: PT91_ATT ). Actually I have copy the whole satandard report code (with Tcode: PT91_ATT ) to my zreport for the customized requirement. Report is exec

  • Want to access non SAP system from EP

    Hey Guys, We are having a system (CRMS) which is a non SAP system. I know through EP we can connect to the non SAP system. Can somebody pls tell me the steps to do this.  I want to access the data from non SAP system on Enterprise Portal. Pls provide

  • Generic icons in Spotlight search menu

    I have noticed that recently I am getting what looks like a generic document icon in the Spotlight search results menu in place of the correct application icon. The icons for the applications display correctly in the applications folder. How do I fix

  • No ActiveX UAG client install (golden bar) on IE11 after upgrading to UAG SP4

    We just upgraded our 2 node UAG array to SP4, but it seems that the IE11 detection is still not working properly? No golden bar will be displayed for the UAG client installation - therefore IE11 users can not use published remoteapps. IE setings are