Problem with writing and reading using serialization

I am having a problem with writing and reading an object that has another object in it. The purpose of the class is to write a order that has multiple items in it. And there will be several orders. This is for an IB project, where one of the requirements is to utilize a hierarchical composite data structure. That is, it is "one that contains more than one element and at least one of the elements is a composite data structure. Examples are, an array or linked list of records, a record that has one field that is another record, or an array". The code is shown below:
The error produced is
java.lang.NullPointerException
     at SamsonRubberIndustries.CustomerOrderDetails.createCustOrdDetailsScreen(CustomerOrderDetails.java:150)
     at SamsonRubberIndustries.CustomerOrderDetails$1.run(CustomerOrderDetails.java:78)
     at java.awt.event.InvocationEvent.dispatch(Unknown Source)
     at java.awt.EventQueue.dispatchEvent(Unknown Source)
     at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
     at java.awt.EventDispatchThread.pumpEventsForFilter(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)
public class CustOrdObject implements Serializable {
     public int CustID;
     public int CustOrderID;
     public Object OrderDate;
     public InnerCustOrdObject[] innerCustOrdObj;
     public float GrandTotal;
     public int MaxItems;
     public CustOrdObject() {}
     public CustOrdObject(InnerCustOrdObject[] innerCustOrdObj,
int CustID, int CustOrderID, Object OrderDate,
float GrandTotal, int innerarrlength, int innerarrpos, int MaxItems) {
          this.CustID = CustID;
          this.CustOrderID = CustOrderID;
          this.OrderDate = OrderDate;
          this.GrandTotal = GrandTotal;          
          this.MaxItems = MaxItems;
          this.innerCustOrdObj = new InnerCustOrdObject[MaxItems];
     public InnerCustOrdObject[] getInnerCustOrdObj() {
          return innerCustOrdObj;
     public void setInnerCustOrdObj(InnerCustOrdObject[] innerCustOrdObj) {
          this.innerCustOrdObj = innerCustOrdObj;
     public int getCustID() {
          return CustID;
     public void setCustID(int custID) {
          CustID = custID;
     public int getCustOrderID() {
          return CustOrderID;
     public void setCustOrderID(int custOrderID) {
          CustOrderID = custOrderID;
     public Object getOrderDate() {
          return OrderDate;
     public void setOrderDate(Object orderDate) {
          OrderDate = orderDate;
     public void setGrandTotal(float grandTotal) {
          GrandTotal = grandTotal;
     public float getGrandTotal() {
          return GrandTotal;
     public int getMaxItems() {
          return MaxItems;
     public void setMaxItems(int maxItems) {
          MaxItems = maxItems;
public class InnerCustOrdObject implements Serializable{
     public int ItemNumber;
     public float UnitPrice;
     public int QuantityRequired;
     public float TotalPrice;
     public InnerCustOrdObject() {}
     public InnerCustOrdObject(int ItemNumber, float
UnitPrice, int QuantityRequired, float TotalPrice){
          this.ItemNumber = ItemNumber;
          this.UnitPrice = UnitPrice;
          this.QuantityRequired = QuantityRequired;
          this.TotalPrice = TotalPrice;
     public int getItemNumber() {
          return ItemNumber;
     public void setItemNumber(int itemNumber) {
          ItemNumber = itemNumber;
     public int getQuantityRequired() {
          return QuantityRequired;
     public void setQuantityRequired(int quantityRequired) {
          QuantityRequired = quantityRequired;
     public float getTotalPrice() {
          return TotalPrice;
     public void setTotalPrice(float totalPrice) {
          TotalPrice = totalPrice;
     public float getUnitPrice() {
          return UnitPrice;
     public void setUnitPrice(float unitPrice) {
          UnitPrice = unitPrice;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.*;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.DefaultTableModel;
public class CustomerOrderDetails extends CommonFeatures{
     //TODO
     private static int MAX_ORDERS = 200;
     private static int MAX_ORDERITEMS = 100;
     private static int MaxRecord;
     private static int CurrentRecord = 1;
     private static int currentItem;
     private static int MaxItems;
     private static boolean FileExists, recFileExists;
     private static CustOrdObject[] orderDetails = new CustOrdObject[MAX_ORDERS];
     private static InnerCustOrdObject[] innerCustOrdObj = new InnerCustOrdObject[MAX_ORDERITEMS];     
     private static File OrderDetailsFile = new File("CustOrdDetails.dat");
     private static File OrdRecordNumStore = new File("OrdRecordNumStore.txt");
     private static PrintWriter writeFile;
     private static BufferedReader readFile;
     private static ObjectOutputStream objOut;
     private static ObjectInputStream objIn;
     //Set format for date
     SimpleDateFormat simpleDF = new SimpleDateFormat("dd MM yyyy");
     //--<BEGINNING>--Declaring Interface Variables------------------------------------------//
     private JPanel innertoppanel, innercenterpanel, innerbottompanel, innerrightpanel, innerleftpanel;
     private JLabel CustIDLbl, CustOrderIDLbl, OrderedDateLbl, GrandTotLbl, ItemNumberLbl,UnitPriceLbl, QuantityReqLbl, TotPriceLbl;
     private JTextField CustIDTxt, CustOrderIDTxt, OrderedDateTxt, GrandTotTxt, ItemNumberTxt, UnitPriceTxt, QuantityReqTxt, TotPriceTxt;
     private JButton addrecordbtn, savebtn, externalprevbtn, externalnextbtn, internalprevbtn, internalnextbtn, gotorecordbtn, additemreqbtn;
     //--<END>--Declaring Interface Variables------------------------------------------------//
     public static void main(String[] args) {
          final CustomerOrderDetails COD = new CustomerOrderDetails();
          java.awt.EventQueue.invokeLater(new Runnable() {
               public void run() {
                    try {
                         UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
                         COD.createCustOrdDetailsScreen();
                    } catch (Exception eb) {
                         eb.printStackTrace();
     //--<BEGINNING>--Creating CustomerOrderDetails Screen---------------------------------------//
     public JFrame createCustOrdDetailsScreen() {
          createDefaultFrame();
          mainframe.setSize(800,500);
          createContainerPanel();
          containerpanel.add(createCustOrdDetailsTitle(), BorderLayout.NORTH);
          containerpanel.add(createCustOrdDetailsMainPanel(), BorderLayout.CENTER);
          //containerpanel.add(createCustOrdDetailsLeftNavButtons(), BorderLayout.WEST);
          //containerpanel.add(createCustOrdDetailsRightNavButtons(), BorderLayout.EAST);
          containerpanel.add(createCustOrdDetailsButtons(), BorderLayout.SOUTH);
          mainframe.setContentPane(containerpanel);
          mainframe.setLocationRelativeTo(null);
          mainframe.setVisible(true);
          //--<BEGINNING>--Checks to see whether CRecordNumberStore file exists-------------------------------//
          if (OrdRecordNumStore.exists() == true) {
               recFileExists = true;
          }else {
               recFileExists = false;
          if (recFileExists == true) {
               MaxRecord = readRecordNumber();
               CurrentRecord = MaxRecord;
               //readOrder();
               //readInnerOrderRecord(CurrentRecord);
               System.out.println("Current Record " +CurrentRecord);
               System.out.println("Max Record " +MaxRecord);
          }else{
               MaxRecord = 1;
               writeRecordNumber(MaxRecord);
               CustOrderIDTxt.setText(""+MaxRecord);
               System.out.println("Current Record " +CurrentRecord);
               System.out.println("Max Record " +MaxRecord);
          //--<END>--Checks to see whether CRecordNumberStore file exists--------------------------------------//
          if(readOrder() != null){
               orderDetails = (CustOrdObject[]) readOrder();
             innerCustOrdObj = orderDetails[CurrentRecord].getInnerCustOrdObj();
               MaxItems = orderDetails[CurrentRecord].getMaxItems();
               if(CurrentRecord > 1 && CurrentRecord < MaxRecord){
                    externalnextbtn.setEnabled(true);
                    externalprevbtn.setEnabled(true);
               if(CurrentRecord >= MaxRecord){
                    externalnextbtn.setEnabled(false);
               getFieldText(CurrentRecord-1);
          }else{
               orderDetails[CurrentRecord] = new CustOrdObject();
               currentItem = 1;
          return mainframe;
     //--<END>--Creating CustomerOrderDetails Screen---------------------------------------------//
     public JPanel createCustOrdDetailsTitle(){
          createTitlePanel();
          titlepanel.setBackground(TxtfontColor);
          label.setText("- Customer Order Details -");
          labelpanel.setBackground(TxtfontColor);
          label.setForeground(Color.white);
          createbuttonpanel();
          buttonpanel.setBackground(TxtfontColor) ;
          buttonpanel.add(createReturnToMainMenuButton());
          titlepanel.add(labelpanel, BorderLayout.WEST);
          titlepanel.add(buttonpanel, BorderLayout.EAST);
          return titlepanel;
     public JPanel createCustOrdDetailsMainPanel(){
          createmainpanel();
          mainpanel.setBackground(TxtfontColor);
          mainpanel.setLayout(new BorderLayout());          
          mainpanel.setBorder(BorderFactory.createTitledBorder(""));
          mainpanel.add(createInnerTopPanel(), BorderLayout.NORTH);
          mainpanel.add(createInnerCenterPanel(), BorderLayout.CENTER);
          mainpanel.add(createInnerBottomPanel(), BorderLayout.SOUTH);
          mainpanel.add(createInnerRightPanel(), BorderLayout.EAST);
          mainpanel.add(createInnerLeftPanel(), BorderLayout.WEST);
          return mainpanel;
     public JPanel createInnerTopPanel(){
          innertoppanel = new JPanel(new GridBagLayout());
          innertoppanel.setBackground(TxtfontColor);
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          //Setting Font Type and Size
          Font font = new Font("Arial", Font.BOLD, 11);
          CustIDLbl = new JLabel("Customer ID");
          CustIDLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          CustIDLbl.setFont(font);
          CustIDLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 1;
          innertoppanel.add(CustIDLbl, GBC);     
          CustIDTxt = new JTextField(20);
          CustIDTxt.setEditable(true);
          GBC.gridx = 2;
          GBC.gridy = 1;
          innertoppanel.add(CustIDTxt, GBC);
          GBC.gridx = 3;
          GBC.gridy = 1;
          innertoppanel.add(Box.createHorizontalStrut(220), GBC);
          OrderedDateLbl = new JLabel("Order Date");
          OrderedDateLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          OrderedDateLbl.setFont(font);
          OrderedDateLbl.setForeground(LblfontColor);
          GBC.gridx = 4;
          GBC.gridy = 1;
          innertoppanel.add(OrderedDateLbl, GBC);     
          //Get today's date
          Date todaydate = new Date();
          OrderedDateTxt = new JTextField(simpleDF.format(todaydate), 20);
          OrderedDateTxt.setHorizontalAlignment(JTextField.CENTER);
          OrderedDateTxt.setEditable(false);
          GBC.gridx = 5;
          GBC.gridy = 1;
          innertoppanel.add(OrderedDateTxt, GBC);
          CustOrderIDLbl = new JLabel("Customer Order ID");
          CustOrderIDLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          CustOrderIDLbl.setFont(font);
          CustOrderIDLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 2;
          innertoppanel.add(CustOrderIDLbl, GBC);
          CustOrderIDTxt = new JTextField(20);
          CustOrderIDTxt.setEditable(false);
          GBC.gridx = 2;
          GBC.gridy = 2;
          innertoppanel.add(CustOrderIDTxt, GBC);
          return innertoppanel;
     public JPanel createInnerCenterPanel(){
          innercenterpanel = new JPanel(new GridBagLayout());
          innercenterpanel.setBackground(TxtfontColor);
          innercenterpanel.setBorder(BorderFactory.createLoweredBevelBorder());
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          //Setting Font Type and Size
          Font font = new Font("Arial", Font.BOLD, 11);
          ItemNumberLbl = new JLabel("Item Number");
          ItemNumberLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          ItemNumberLbl.setFont(font);
          ItemNumberLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 1;
          innercenterpanel.add(ItemNumberLbl, GBC);     
          ItemNumberTxt = new JTextField(20);
          GBC.gridx = 2;
          GBC.gridy = 1;
          innercenterpanel.add(ItemNumberTxt, GBC);
          UnitPriceLbl = new JLabel("Unit Price");
          UnitPriceLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          UnitPriceLbl.setFont(font);
          UnitPriceLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 2;
          innercenterpanel.add(UnitPriceLbl, GBC);     
          UnitPriceTxt = new JTextField(20);
          //UnitPriceTxt.setEditable(false);
          GBC.gridx = 2;
          GBC.gridy = 2;
          innercenterpanel.add(UnitPriceTxt, GBC);
          QuantityReqLbl = new JLabel("Quantity Required");
          QuantityReqLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          QuantityReqLbl.setFont(font);
          QuantityReqLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 3;
          innercenterpanel.add(QuantityReqLbl, GBC);     
          QuantityReqTxt = new JTextField(20);
          //QuantityReqTxt.setEditable(false);
          GBC.gridx = 2;
          GBC.gridy = 3;
          innercenterpanel.add(QuantityReqTxt, GBC);
          TotPriceLbl = new JLabel("Total Price");
          TotPriceLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          TotPriceLbl.setFont(font);
          TotPriceLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 4;
          innercenterpanel.add(TotPriceLbl, GBC);     
          TotPriceTxt = new JTextField(20);
          //TotPriceTxt.setEditable(false);
          GBC.gridx = 2;
          GBC.gridy = 4;
          innercenterpanel.add(TotPriceTxt, GBC);
          return innercenterpanel;
     public JPanel createInnerBottomPanel(){
          innerbottompanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
          innerbottompanel.setBackground(TxtfontColor);
          //Setting Font Type and Size
          Font font = new Font("Arial", Font.BOLD, 11);
          GrandTotLbl = new JLabel("Grand Total");
          GrandTotLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          GrandTotLbl.setFont(font);
          GrandTotLbl.setForeground(LblfontColor);
          innerbottompanel.add(GrandTotLbl);
          innerbottompanel.add(Box.createHorizontalStrut(30));
          GrandTotTxt = new JTextField(20);
          innerbottompanel.add(GrandTotTxt);
          return innerbottompanel;
     public JPanel createInnerRightPanel(){
          innerrightpanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
          innerrightpanel.setBackground(TxtfontColor);
          innerrightpanel.setLayout(new BoxLayout(navrightpanel, BoxLayout.Y_AXIS));
          innerrightpanel.setBorder(BorderFactory.createLoweredBevelBorder());
          innerrightpanel.setLayout(new GridBagLayout());          
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          internalnextbtn = new JButton(createNextButtonIcon());
          GBC.gridx = 1;
          GBC.gridy = 1;
          internalnextbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    //getInnerFieldText(currentItem);
                    internalprevbtn.setEnabled(true);
                    if(currentItem < MaxItems){
                         ++CurrentRecord;
                         //readOrder();
                         //readInnerOrderRecord(CurrentRecord);
                         setInnerFieldText(currentItem);
                         System.out.println(CurrentRecord);//Checking RECORD_NUM
                    if(currentItem == MaxItems){
                         internalnextbtn.setEnabled(false);
          innerrightpanel.add(internalnextbtn, GBC);
          return innerrightpanel;
     public JPanel createInnerLeftPanel(){
          innerleftpanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
          innerleftpanel.setBackground(TxtfontColor);
          innerleftpanel.setBorder(BorderFactory.createLoweredBevelBorder());
          innerleftpanel.setForeground(Color.BLACK);
          innerleftpanel.setLayout(new GridBagLayout());          
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          internalprevbtn = new JButton(createPreviousButtonIcon());
          GBC.gridx = 1;
          GBC.gridy = 1;
          internalprevbtn.addActionListener(new ActionListener(){
               public void  actionPerformed(ActionEvent evt){
                    //getInnerFieldText(currentItem);
                    internalnextbtn.setEnabled(true);
                    if(currentItem == 1){
                         internalprevbtn.setEnabled(false);
                    if(currentItem > 0){
                         --currentItem;
                         //readOrder();
                         setInnerFieldText(currentItem);
          innerleftpanel.add(internalprevbtn, GBC);
          return innerleftpanel;
     public JPanel createCustOrdDetailsButtons(){
          createbuttonpanel();
          buttonpanel.setBackground(TxtfontColor);
          externalprevbtn = new JButton(createPreviousButtonIcon());
          externalprevbtn.addActionListener(new ActionListener(){
               public void  actionPerformed(ActionEvent evt){
                    getFieldText(CurrentRecord);
                    externalnextbtn.setEnabled(true);
                    if(CurrentRecord == 1){
                         externalprevbtn.setEnabled(false);
                    if(CurrentRecord > 0){
                         --CurrentRecord;
                         setFieldText(CurrentRecord);
                         System.out.println(CurrentRecord);//Checking RECORD_NUM
          buttonpanel.add(externalprevbtn);
          addrecordbtn = new JButton("Add Record", createAddButtonIcon());
          addrecordbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    try{
                         MaxRecord = readRecordNumber();
                         MaxRecord++;
                         writeRecordNumber(MaxRecord);
                         //--<BEGINNING>--Clear Fields-------------------------------------------------------//
                         CustIDTxt.setText("");
                         CustOrderIDTxt.setText(""+MaxRecord);
                         //Get today's date
                         Date todaydate = new Date();
                         OrderedDateTxt.setText(""+simpleDF.format(todaydate));
                         ItemNumberTxt.setText("");
                         UnitPriceTxt.setText("");
                         QuantityReqTxt.setText("");
                         TotPriceTxt.setText("");
                         GrandTotTxt.setText("");
                         //--<END>--Clear Fields-------------------------------------------------------------//
                         externalnextbtn.setEnabled(false);
                         externalprevbtn.setEnabled(true);
                         System.out.println(MaxRecord);
                    } catch(Exception ec){ec.printStackTrace();}
          buttonpanel.add(addrecordbtn);
          savebtn = new JButton("Save Data", createSaveButtonIcon());
          savebtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    setFieldText(CurrentRecord);
                    writeOrder();
                    writeRecordNumber(MaxRecord);
                    System.out.println(CurrentRecord);
                    System.out.println(MaxRecord);
          buttonpanel.add(savebtn);
          java.net.URL imageURL_AddRowIcon = CommonFeatures.class.getResource("Icons/edit_add.png");
          ImageIcon AddRowIcon = new ImageIcon(imageURL_AddRowIcon);
          additemreqbtn = new JButton("Add Item", AddRowIcon);
          additemreqbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    try{
                         //--<BEGINNING>--Clear Fields-------------------------------------------------------//
                         ItemNumberTxt.setText("");
                         UnitPriceTxt.setText("");
                         QuantityReqTxt.setText("");
                         TotPriceTxt.setText("");
                         //--<END>--Clear Fields-------------------------------------------------------------//
                         //CurrentRecord = MaxRecord;
                         currentItem++;
                         setInnerFieldText(currentItem);
                         internalnextbtn.setEnabled(false);
                         internalprevbtn.setEnabled(true);
                         System.out.println(MaxRecord);
                    } catch(Exception ec){ec.printStackTrace();}
          buttonpanel.add(additemreqbtn);
          externalnextbtn = new JButton(createNextButtonIcon());
          externalnextbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    getFieldText(CurrentRecord);
                    externalprevbtn.setEnabled(true);
                    if(CurrentRecord < MaxRecord){
                         ++CurrentRecord;
                         setFieldText(CurrentRecord);
                         System.out.println(CurrentRecord);//Checking RECORD_NUM
                    if(CurrentRecord == MaxRecord){
                         externalnextbtn.setEnabled(false);
          buttonpanel.add(externalnextbtn);
          return buttonpanel;
     //TODO
     public void setFieldText(int orderID){//TODO
          orderDetails[orderID].setCustID(Integer.parseInt(CustIDTxt.getText()));
          orderDetails[orderID].setCustOrderID(Integer.parseInt(CustOrderIDTxt.getText()));
          orderDetails[orderID].setOrderDate(OrderedDateTxt.getText());
          orderDetails[orderID].setInnerCustOrdObj(innerCustOrdObj);
          orderDetails[orderID].setMaxItems(MaxItems);
          setInnerFieldText(currentItem);
          orderDetails[orderID].setGrandTotal(Float.parseFloat(GrandTotTxt.getText()));
     public void setInnerFieldText(int currentItem){//TODO
          innerCustOrdObj[currentItem] = new InnerCustOrdObject();
          innerCustOrdObj[currentItem].setItemNumber(Integer.parseInt(ItemNumberTxt.getText()));
          innerCustOrdObj[currentItem].setUnitPrice(Float.parseFloat(UnitPriceTxt.getText()));
          innerCustOrdObj[currentItem].setQuantityRequired(Integer.parseInt(QuantityReqTxt.getText()));
          innerCustOrdObj[currentItem].setTotalPrice(Float.parseFloat(TotPriceTxt.getText()));
     public void getFieldText(int orderID){
          CustIDTxt.setText(Integer.toString(orderDetails[orderID].getCustID()));
          CustOrderIDTxt.setText(Integer.toString(orderDetails[orderID].getCustOrderID()));
          OrderedDateTxt.setText(""+orderDetails[orderID].getOrderDate());          
          currentItem = orderDetails[orderID].getMaxItems();
          System.err.println("currentItem" + currentItem);
          getInnerFieldText(currentItem);
          GrandTotTxt.setText(Float.toString(orderDetails[orderID].getGrandTotal()));
     public void getInnerFieldText(int currentItem){
          ItemNumberTxt.setText(Integer.toString(innerCustOrdObj[currentItem].getItemNumber()));
          UnitPriceTxt.setText(Float.toString(innerCustOrdObj[currentItem].getUnitPrice()));
          QuantityReqTxt.setText(Integer.toString(innerCustOrdObj[currentItem].getQuantityRequired()));
          TotPriceTxt.setText(Float.toString(innerCustOrdObj[currentItem].getTotalPrice()));
     public void writeOrder(){//TODO
          try {
               objOut = new ObjectOutputStream(new FileOutputStream(OrderDetailsFile));
               objOut.writeObject(orderDetails);
               System.out.println("WORKING!");
               objOut.flush();
               objOut.close();
          } catch (IOException e) {
               e.printStackTrace();
     public Object readOrder(){
          Object temporaryObj;
          try{
               objIn = new ObjectInputStream(new FileInputStream(OrderDetailsFile));
               temporaryObj = objIn.readObject();               
               CustOrdObject[] blah = (CustOrdObject[]) temporaryObj;
               System.out.println("Outer: "+blah[1].getCustID());
               InnerCustOrdObject[] whee = blah[1].getInnerCustOrdObj();
               System.out.println("Inner: "+whee[1].getItemNumber());
               objIn.close();
               System.out.println("Read Worky!");
               return temporaryObj;
          }catch(Exception e){
               e.printStackTrace();
               System.out.println("Read No Worky!");
               return null;
     public void writeRecordNumber(int MaxRecord){
          try{
               objOut = new ObjectOutputStream(new FileOutputStream(OrdRecordNumStore));
               objOut.writeObject(MaxRecord);
               System.out.println("WORKING!");
               objOut.flush();
               objOut.close();
          }catch(Exception e){e.printStackTrace();}
     public int readRecordNumber() {
          try {
               objIn = new ObjectInputStream(new FileInputStream(OrdRecordNumStore));
               int temporaryObj = Integer.parseInt(objIn.readObject().toString());
               objIn.close();
               System.out.println("Read Number Worky!");
               return temporaryObj;
          } catch (Exception e) {
               e.printStackTrace();
               System.out.println("Read Number No Worky!");
               return -1;
}Message was edited by:
Kilik07
Message was edited by:
Kilik07

ok i got reading to work to a certain extent... but the prob is i cnt seem to save my innerCustOrdObj proprly...when ever i look for a record using the gotorecordbtn, the outerobject, which is the orderDetails, seems to change but the innerCustOrdObj remains the same... heres the new code..
public class CustomerOrderDetails extends CommonFeatures{
     //TODO
     private static int MAX_ORDERS = 200;
     private static int MAX_ORDERITEMS = 100;
     private static int MaxRecord;
     private static int CurrentRecord = 1;
     private static int currentItem;
     private static int MaxItems = 1;
     private static boolean FileExists, recFileExists;
     private static boolean RecordExists;
     private static CustOrdObject[] orderDetails = new CustOrdObject[MAX_ORDERS];
     private static InnerCustOrdObject[] innerCustOrdObj = new InnerCustOrdObject[MAX_ORDERITEMS];     
     private static File OrderDetailsFile = new File("CustOrdDetails.ser");
     private static File OrdRecordNumStore = new File("OrdRecordNumStore.txt");
     private static PrintWriter writeFile;
     private static BufferedReader readFile;
     private static ObjectOutputStream objOut;
     private static ObjectInputStream objIn;
     //Set format for date
     SimpleDateFormat simpleDF = new SimpleDateFormat("dd MM yyyy");
     //--<BEGINNING>--Declaring Interface Variables------------------------------------------//
     private JPanel innertoppanel, innercenterpanel, innerbottompanel, innerrightpanel, innerleftpanel;
     private JLabel CustIDLbl, CustOrderIDLbl, OrderedDateLbl, GrandTotLbl, ItemNumberLbl,UnitPriceLbl, QuantityReqLbl, TotPriceLbl;
     private JTextField CustIDTxt, CustOrderIDTxt, OrderedDateTxt, GrandTotTxt, ItemNumberTxt, UnitPriceTxt, QuantityReqTxt, TotPriceTxt;
     private JButton addrecordbtn, savebtn, externalprevbtn, externalnextbtn, internalprevbtn, internalnextbtn, gotorecordbtn, additemreqbtn;
     //--<END>--Declaring Interface Variables------------------------------------------------//
     public static void main(String[] args) {
          final CustomerOrderDetails COD = new CustomerOrderDetails();
          java.awt.EventQueue.invokeLater(new Runnable() {
               public void run() {
                    try {
                         UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
                         COD.createCustOrdDetailsScreen();
                    } catch (Exception eb) {
                         eb.printStackTrace();
     //--<BEGINNING>--Creating CustomerOrderDetails Screen---------------------------------------//
     public JFrame createCustOrdDetailsScreen() {
          createDefaultFrame();
          mainframe.setSize(800,500);
          createContainerPanel();
          containerpanel.add(createCustOrdDetailsTitle(), BorderLayout.NORTH);
          containerpanel.add(createCustOrdDetailsMainPanel(), BorderLayout.CENTER);
          //containerpanel.add(createCustOrdDetailsLeftNavButtons(), BorderLayout.WEST);
          //containerpanel.add(createCustOrdDetailsRightNavButtons(), BorderLayout.EAST);
          containerpanel.add(createCustOrdDetailsButtons(), BorderLayout.SOUTH);
          mainframe.setContentPane(containerpanel);
          mainframe.setLocationRelativeTo(null);
          mainframe.setVisible(true);
          //--<BEGINNING>--Checks to see whether CRecordNumberStore file exists-------------------------------//
          if (OrdRecordNumStore.exists() == true) {
               recFileExists = true;
          }else {
               recFileExists = false;
          if (recFileExists == true) {
               MaxRecord = readRecordNumber();
               CurrentRecord = MaxRecord;
               //readOrder();
               //readInnerOrderRecord(CurrentRecord);
               System.out.println("Current Record " +CurrentRecord);
               System.out.println("Max Record " +MaxRecord);
          }else{
               MaxRecord = 1;
               writeRecordNumber(MaxRecord);
               CustOrderIDTxt.setText(""+MaxRecord);
               System.out.println("Current Record " +CurrentRecord);
               System.out.println("Max Record " +MaxRecord);
          //--<END>--Checks to see whether CRecordNumberStore file exists--------------------------------------//
          if(readOrder() != null){
               orderDetails = (CustOrdObject[]) readOrder();
               //CurrentRecord--;
               //System.out.println("Current Rec Here"+CurrentRecord);
               if(orderDetails[CurrentRecord] == null){
                    System.err.println("CustomerOrderObj 1 is null !!");
               }else{
                    System.err.println("CustomerOrderObj 1 is  not null !!");
               if(orderDetails[CurrentRecord].getInnerCustOrdObj() == null){
                    System.err.println("InnerCustomerOrderObj is null !!");
               }else{
                    System.err.println("InnerCustomerOrderObj is  not null !!");
               innerCustOrdObj = orderDetails[CurrentRecord].getInnerCustOrdObj();
               MaxItems = orderDetails[CurrentRecord].getMaxItems();
               if(CurrentRecord > 1 && CurrentRecord < MaxRecord){
                    externalnextbtn.setEnabled(true);
                    externalprevbtn.setEnabled(true);
               if(CurrentRecord >= MaxRecord){
                    externalnextbtn.setEnabled(false);
               getFieldText(CurrentRecord);
               getInnerFieldText(MaxItems);
          }else{
               orderDetails[CurrentRecord] = new CustOrdObject();
               currentItem = 1;
          return mainframe;
     //--<END>--Creating CustomerOrderDetails Screen---------------------------------------------//
     public JPanel createCustOrdDetailsTitle(){
          createTitlePanel();
          titlepanel.setBackground(TxtfontColor);
          label.setText("- Customer Order Details -");
          labelpanel.setBackground(TxtfontColor);
          label.setForeground(Color.white);
          createbuttonpanel();
          buttonpanel.setBackground(TxtfontColor) ;
          buttonpanel.add(createReturnToMainMenuButton());
          titlepanel.add(labelpanel, BorderLayout.WEST);
          titlepanel.add(buttonpanel, BorderLayout.EAST);
          return titlepanel;
     public JPanel createCustOrdDetailsMainPanel(){
          createmainpanel();
          mainpanel.setBackground(TxtfontColor);
          mainpanel.setLayout(new BorderLayout());          
          mainpanel.setBorder(BorderFactory.createTitledBorder(""));
          mainpanel.add(createInnerTopPanel(), BorderLayout.NORTH);
          mainpanel.add(createInnerCenterPanel(), BorderLayout.CENTER);
          mainpanel.add(createInnerBottomPanel(), BorderLayout.SOUTH);
          mainpanel.add(createInnerRightPanel(), BorderLayout.EAST);
          mainpanel.add(createInnerLeftPanel(), BorderLayout.WEST);
          return mainpanel;
     public JPanel createInnerTopPanel(){
          innertoppanel = new JPanel(new GridBagLayout());
          innertoppanel.setBackground(TxtfontColor);
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          //Setting Font Type and Size
          Font font = new Font("Arial", Font.BOLD, 11);
          CustIDLbl = new JLabel("Customer ID");
          CustIDLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          CustIDLbl.setFont(font);
          CustIDLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 1;
          innertoppanel.add(CustIDLbl, GBC);     
          CustIDTxt = new JTextField(20);
          CustIDTxt.setEditable(true);
          GBC.gridx = 2;
          GBC.gridy = 1;
          innertoppanel.add(CustIDTxt, GBC);
          GBC.gridx = 3;
          GBC.gridy = 1;
          innertoppanel.add(Box.createHorizontalStrut(220), GBC);
          OrderedDateLbl = new JLabel("Order Date");
          OrderedDateLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          OrderedDateLbl.setFont(font);
          OrderedDateLbl.setForeground(LblfontColor);
          GBC.gridx = 4;
          GBC.gridy = 1;
          innertoppanel.add(OrderedDateLbl, GBC);     
          //Get today's date
          Date todaydate = new Date();
          OrderedDateTxt = new JTextField(simpleDF.format(todaydate), 20);
          OrderedDateTxt.setHorizontalAlignment(JTextField.CENTER);
          OrderedDateTxt.setEditable(false);
          GBC.gridx = 5;
          GBC.gridy = 1;
          innertoppanel.add(OrderedDateTxt, GBC);
          CustOrderIDLbl = new JLabel("Customer Order ID");
          CustOrderIDLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          CustOrderIDLbl.setFont(font);
          CustOrderIDLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 2;
          innertoppanel.add(CustOrderIDLbl, GBC);
          CustOrderIDTxt = new JTextField(20);
          //CustOrderIDTxt.setEditable(false);
          GBC.gridx = 2;
          GBC.gridy = 2;
          innertoppanel.add(CustOrderIDTxt, GBC);
          return innertoppanel;
     public JPanel createInnerCenterPanel(){
          innercenterpanel = new JPanel(new GridBagLayout());
          innercenterpanel.setBackground(TxtfontColor);
          innercenterpanel.setBorder(BorderFactory.createLoweredBevelBorder());
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          //Setting Font Type and Size
          Font font = new Font("Arial", Font.BOLD, 11);
          ItemNumberLbl = new JLabel("Item Number");
          ItemNumberLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          ItemNumberLbl.setFont(font);
          ItemNumberLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 1;
          innercenterpanel.add(ItemNumberLbl, GBC);     
          ItemNumberTxt = new JTextField(20);
          GBC.gridx = 2;
          GBC.gridy = 1;
          innercenterpanel.add(ItemNumberTxt, GBC);
          UnitPriceLbl = new JLabel("Unit Price");
          UnitPriceLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          UnitPriceLbl.setFont(font);
          UnitPriceLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 2;
          innercenterpanel.add(UnitPriceLbl, GBC);     
          UnitPriceTxt = new JTextField(20);
          //UnitPriceTxt.setEditable(false);
          GBC.gridx = 2;
          GBC.gridy = 2;
          innercenterpanel.add(UnitPriceTxt, GBC);
          QuantityReqLbl = new JLabel("Quantity Required");
          QuantityReqLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          QuantityReqLbl.setFont(font);
          QuantityReqLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 3;
          innercenterpanel.add(QuantityReqLbl, GBC);     
          QuantityReqTxt = new JTextField(20);
          //QuantityReqTxt.setEditable(false);
          GBC.gridx = 2;
          GBC.gridy = 3;
          innercenterpanel.add(QuantityReqTxt, GBC);
          TotPriceLbl = new JLabel("Total Price");
          TotPriceLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          TotPriceLbl.setFont(font);
          TotPriceLbl.setForeground(LblfontColor);
          GBC.gridx = 1;
          GBC.gridy = 4;
          innercenterpanel.add(TotPriceLbl, GBC);     
          TotPriceTxt = new JTextField(20);
          TotPriceTxt.setEditable(false);
          TotPriceTxt.addFocusListener(new FocusAdapter(){
               public void focusGained(FocusEvent evt){
                    TotPriceTxt.setText(""+Integer.parseInt(UnitPriceTxt.getText())*Integer.parseInt(QuantityReqTxt.getText()));
          GBC.gridx = 2;
          GBC.gridy = 4;
          innercenterpanel.add(TotPriceTxt, GBC);
          return innercenterpanel;
     public JPanel createInnerBottomPanel(){
          innerbottompanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
          innerbottompanel.setBackground(TxtfontColor);
          //Setting Font Type and Size
          Font font = new Font("Arial", Font.BOLD, 11);
          GrandTotLbl = new JLabel("Grand Total");
          GrandTotLbl.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
          GrandTotLbl.setFont(font);
          GrandTotLbl.setForeground(LblfontColor);
          innerbottompanel.add(GrandTotLbl);
          innerbottompanel.add(Box.createHorizontalStrut(30));
          GrandTotTxt = new JTextField(20);
          innerbottompanel.add(GrandTotTxt);
          return innerbottompanel;
     public JPanel createInnerRightPanel(){
          innerrightpanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
          innerrightpanel.setBackground(TxtfontColor);
          innerrightpanel.setLayout(new BoxLayout(navrightpanel, BoxLayout.Y_AXIS));
          innerrightpanel.setBorder(BorderFactory.createLoweredBevelBorder());
          innerrightpanel.setLayout(new GridBagLayout());          
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          internalnextbtn = new JButton(createNextButtonIcon());
          GBC.gridx = 1;
          GBC.gridy = 1;
          internalnextbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    getInnerFieldText(currentItem);
                    internalprevbtn.setEnabled(true);
                    if(currentItem < MaxItems){
                         ++currentItem;
                         orderDetails[CurrentRecord].getInnerCustOrdObj();
                         setInnerFieldText(currentItem);
                         System.out.println("Current Item" + currentItem);
                    if(currentItem == MaxItems){
                         internalnextbtn.setEnabled(false);
          innerrightpanel.add(internalnextbtn, GBC);
          return innerrightpanel;
     public JPanel createInnerLeftPanel(){
          innerleftpanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
          innerleftpanel.setBackground(TxtfontColor);
          innerleftpanel.setBorder(BorderFactory.createLoweredBevelBorder());
          innerleftpanel.setForeground(Color.BLACK);
          innerleftpanel.setLayout(new GridBagLayout());          
          GridBagConstraints GBC = new GridBagConstraints();
          GBC.fill = GridBagConstraints.HORIZONTAL;
          internalprevbtn = new JButton(createPreviousButtonIcon());
          GBC.gridx = 1;
          GBC.gridy = 1;
          internalprevbtn.addActionListener(new ActionListener(){
               public void  actionPerformed(ActionEvent evt){
                    getInnerFieldText(currentItem);
                    internalnextbtn.setEnabled(true);
                    if(currentItem == 1){
                         internalprevbtn.setEnabled(false);
                    if(currentItem > 0){
                         --currentItem;
                         orderDetails[CurrentRecord].getInnerCustOrdObj();
                         setInnerFieldText(currentItem);
                         System.out.println("Current Item" + currentItem);
          innerleftpanel.add(internalprevbtn, GBC);
          return innerleftpanel;
     public JPanel createCustOrdDetailsButtons(){
          createbuttonpanel();
          buttonpanel.setBackground(TxtfontColor);
          externalprevbtn = new JButton(createPreviousButtonIcon());
          externalprevbtn.addActionListener(new ActionListener(){
               public void  actionPerformed(ActionEvent evt){
                    getFieldText(CurrentRecord);
                    externalnextbtn.setEnabled(true);
                    if(CurrentRecord == 1){
                         externalprevbtn.setEnabled(false);
                    if(CurrentRecord > 0){
                         --CurrentRecord;
                         setFieldText(CurrentRecord);
                         System.out.println("Current Record " + CurrentRecord);//Checking RECORD_NUM
          buttonpanel.add(externalprevbtn);
          addrecordbtn = new JButton("Add Record", createAddButtonIcon());
          addrecordbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    try{
                         MaxRecord = readRecordNumber();
                         MaxRecord++;
                         CurrentRecord = MaxRecord;
                         orderDetails[CurrentRecord] = new CustOrdObject();
                         writeRecordNumber(MaxRecord);
                         MaxItems = 1;
                         innerCustOrdObj[MaxItems] = new InnerCustOrdObject();
                         //--<BEGINNING>--Clear Fields-------------------------------------------------------//
                         CustIDTxt.setText("");
                         CustOrderIDTxt.setText(""+MaxRecord);
                         //Get today's date
                         Date todaydate = new Date();
                         OrderedDateTxt.setText(""+simpleDF.format(todaydate));
                         ItemNumberTxt.setText("");
                         UnitPriceTxt.setText("");
                         QuantityReqTxt.setText("");
                         TotPriceTxt.setText("");
                         GrandTotTxt.setText("");
                         //--<END>--Clear Fields-------------------------------------------------------------//
                         externalnextbtn.setEnabled(false);
                         externalprevbtn.setEnabled(true);
                         System.out.println(MaxRecord);
                    } catch(Exception ec){ec.printStackTrace();}
          buttonpanel.add(addrecordbtn);
          savebtn = new JButton("Save Data", createSaveButtonIcon());
          savebtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    setFieldText(CurrentRecord);
                    setInnerFieldText(MaxItems);
                    writeOrder();
                    writeRecordNumber(MaxRecord);
                    System.out.println(CurrentRecord);
                    System.out.println(MaxRecord);
          buttonpanel.add(savebtn);
          java.net.URL imageURL_AddRowIcon = CommonFeatures.class.getResource("Icons/edit_add.png");
          ImageIcon AddRowIcon = new ImageIcon(imageURL_AddRowIcon);
          additemreqbtn = new JButton("Add Item", AddRowIcon);
          additemreqbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    try{
                         //--<BEGINNING>--Clear Fields-------------------------------------------------------//
                         ItemNumberTxt.setText("");
                         UnitPriceTxt.setText("");
                         QuantityReqTxt.setText("");
                         TotPriceTxt.setText("");
                         //--<END>--Clear Fields-------------------------------------------------------------//
                         //CurrentRecord = MaxRecord;
                         MaxItems++;
                         innerCustOrdObj[MaxItems] = new InnerCustOrdObject();
                         System.out.println("Max Items "+MaxItems);
                         currentItem = MaxItems;
                         orderDetails[CurrentRecord].setMaxItems(MaxItems);
                         ///setInnerFieldText(currentItem);
                         internalnextbtn.setEnabled(false);
                         internalprevbtn.setEnabled(true);
                    } catch(Exception ec){ec.printStackTrace();}
          buttonpanel.add(additemreqbtn);
          externalnextbtn = new JButton(createNextButtonIcon());
          externalnextbtn.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent evt){
                    getFieldText(CurrentRecord);
                    externalprevbtn.setEnabled(true);
                    if(CurrentRecord < MaxRecord){
                         ++CurrentRecord;
                         setFieldText(CurrentRecord);
                         System.out.println(CurrentRecord);//Checking RECORD_NUM
                    if(CurrentRecord == MaxRecord){
                         externalnextbtn.setEnabled(false);
          buttonpanel.add(externalnextbtn);
          gotorecordbtn = new JButton("Go To Record", createGotoButtonIcon());
          gotorecordbtn.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent evt){
                     * The text from the GotorecordTxt textfield will be taken and assigned
                     * to a temporary integer variable called Find. 
                    int Find = Integer.parseInt(CustOrderIDTxt.getText());
                    for(int j=1; j <= MaxRecord; j++){
                          * Using a for loop, each record can be read using the readCustRecord
                          * method.
                         getFieldText(j);
                          * An if condition is utilized to check whether the temporary stored variable, Find,
                          * matches a field in a record. If this record is found, then using the RecordExists
                          * which was declared at the top, either a true or false statement can be assigned
                          * If the record exists, then a true statement will be assigned, if not a false
                          * statement will be assigned.
                         if(orderDetails[j].getCustOrderID() == Find){
                              RecordExists = true;
                              break;
                         }else{
                              RecordExists = false;
                    if(RecordExists == false){
                          * If the RecordExists is assigned a false statement, then a message will be
                          * displayed to show that the record does not exist.
                         JOptionPane.showMessageDialog(null, "Record Does Not Exist!", "Error Message", JOptionPane.ERROR_MESSAGE, createErrorIcon());
                    }else{
                         getFieldText(Find);
          buttonpanel.add(gotorecordbtn);
          return buttonpanel;
     //TODO
     public void setFieldText(int orderID){//TODO
          orderDetails[orderID].setCustID(Integer.parseInt(CustIDTxt.getText()));
          orderDetails[orderID].setCustOrderID(Integer.parseInt(CustOrderIDTxt.getText()));
          orderDetails[orderID].setOrderDate(OrderedDateTxt.getText());
          orderDetails[orderID].setInnerCustOrdObj(innerCustOrdObj);
          orderDetails[orderID].setMaxItems(MaxItems);
          setInnerFieldText(currentItem);
          orderDetails[orderID].setGrandTotal(Float.parseFloat(GrandTotTxt.getText()));
     public void setInnerFieldText(int currentItem){//TODO
          innerCustOrdObj[currentItem] = new InnerCustOrdObject();
          innerCustOrdObj[currentItem].setMaxItems(MaxItems);
          innerCustOrdObj[currentItem].setItemNumber(Integer.parseInt(ItemNumberTxt.getText()));
          innerCustOrdObj[currentItem].setUnitPrice(Float.parseFloat(UnitPriceTxt.getText()));
          innerCustOrdObj[currentItem].setQuantityRequired(Integer.parseInt(QuantityReqTxt.getText()));
          innerCustOrdObj[currentItem].setTotalPrice(Float.parseFloat(TotPriceTxt.getText()));
     public void getFieldText(int orderID){
          CustIDTxt.setText(Integer.toString(orderDetails[orderID].getCustID()));
          CustOrderIDTxt.setText(Integer.toString(orderDetails[orderID].getCustOrderID()));
          OrderedDateTxt.setText(""+orderDetails[orderID].getOrderDate());          
          currentItem = orderDetails[orderID].getMaxItems();
          orderDetails[orderID].getInnerCustOrdObj();
          System.err.println("currentItem" + currentItem);
          //getInnerFieldText(currentItem);
          GrandTotTxt.setText(Float.toString(orderDetails[orderID].getGrandTotal()));
     public void getInnerFieldText(int currentItem){
          ItemNumberTxt.setText(Integer.toString(innerCustOrdObj[currentItem].getItemNumber()));
          UnitPriceTxt.setText(Float.toString(innerCustOrdObj[currentItem].getUnitPrice()));
          QuantityReqTxt.setText(Integer.toString(innerCustOrdObj[currentItem].getQuantityRequired()));
          TotPriceTxt.setText(Float.toString(innerCustOrdObj[currentItem].getTotalPrice()));
     public void writeOrder(){//TODO
          try {
               objOut = new ObjectOutputStream(new FileOutputStream(OrderDetailsFile));
               objOut.writeObject(orderDetails);
               System.out.println("WORKING!");
               objOut.flush();
               objOut.close();
          } catch (IOException e) {
               e.printStackTrace();
     public Object readOrder(){
          Object temporaryObj;
          try{
               objIn = new ObjectInputStream(new FileInputStream(OrderDetailsFile));
               temporaryObj = objIn.readObject();               
               CustOrdObject[] blah = (CustOrdObject[]) temporaryObj;
               /*               System.out.println("Outer: "+blah[1].getCustID());
               InnerCustOrdObject[] whee = blah[1].getInnerCustOrdObj();
               System.out.println("Inner: "+whee[1].getItemNumber());*/
               objIn.close();
               System.out.println("Read Worky!");
               return temporaryObj;
          }catch(Exception e){
               e.printStackTrace();
               System.out.println("Read No Worky!");
               return null;
     public void writeRecordNumber(int MaxRecord){
          try{
               objOut = new ObjectOutputStream(new FileOutputStream(OrdRecordNumStore));
               objOut.writeObject(MaxRecord);
               System.out.println("WORKING!");
               objOut.flush();
               objOut.close();
          }catch(Exception e){e.printStackTrace();}
     public int readRecordNumber() {
          try {
               objIn = new ObjectInputStream(new FileInputStream(OrdRecordNumStore));
               int temporaryObj = Integer.parseInt(objIn.readObject().toString());
               objIn.close();
               System.out.println("Read Number Worky!");
               return temporaryObj;
          } catch (Exception e) {
               e.printStackTrace();
               System.out.println("Read Number No Worky!");
               return -1;
}Message was edited by:
Kilik07

Similar Messages

  • Problem with Log and transfer using AVCHD

    Hello,
    I was wondering if I can get help. I use a Canon Vixia HF S200 and FCP Version 6.0.6
    I have produced projects on my MacBook Pro 2.33 Ghz Intel Core 2 using this process before with no problems in the past. This problem just started and I dont know what has changed. When I open the Log and Transfer (LT) window I can see and hear all my video from the AVCHD folder in my harddrive just fine, I can scrub with no prob.... But when I add clip to Queue I get an red circle with exclamation on my status.
    I have changed the settings on the preferences to Apple intermediate Codec and the audio to plain stereo.. no luck there, the video still will not transfer to my bin.
    I have made sure that the toggle Queue state was the little arrow instead of the paused icon...no luck there either... i got a message that says clip queued transferring but nothing is happening.
    I will appreciate your help!
    Also I didn't mean to tread jack earlier, please accept my apologies, if anybody saw that...

    OK!!!!! This seriously cost me 1 day of my life that I'll never get back!!! lol
    So I was able to bring the footage in on to Imovie...Yes, I was that desperate...deadlines do that!
    Edited the entire project there...kinda sucked...
    Then I had the bright idea that if I was able to bring the videos in to Imovie, on my local HD...than something may be wrong with my scratch disk that I use on FC...its a USB disk, specs =slow.
    So I changed the scratch disk and yes "Davi S" for good measure I also deleted the Pref files.
    So it working again...here I go editing on FC after I edited the entire project on Imovie...
    Thanks for all your help!

  • Problems with Pages and Numbers using iCloud Drive on early 2008 MacPro, Yosemite

    One of my computers, an early 2008 MacPro running Yosemite, will NOT save Pages or Numbers documents to iCloud Drive from within those applications.  I see the little iCloud Drive error badge next to the file name in Finder after I try to save.  However, on the SAME computer I can save Pages and Numbers documents to a local drive (e.g., to my Desktop) and then use the Finder to drag the documents to iCloud Drive successfully.  Another computer, a MacBook Pro running Yosemite, has no problems using iCloud Drive to create, edit and then save Pages and Numbers documents stored on iCloud Drive.  I have tried "turning off" iCloud Drive for Pages and Numbers in System Preferences on the Mac Pro and then turning it back on to no effect.  I have also logged out of iCloud Drive on all of my devices (which include two iOS devices) and then logging back in to ensure that I'm using the same login id on all devices, again with no apparent change.
    Any suggestions for my next steps in attempting to solve this issue?  Is there any way to get more information about precisely what type of error is occurring?  Hovering over the badge only shows "Error".
    Thanks in advance.
    Jon

    Found a solution, but it is odd:
    On the 2008 Mac Pro, I UNCHECK the boxes beside Pages and Numbers in System Preferences > iCloud > iCloud Drive > Options. Now Pages and Numbers will properly save edited documents to the appropriate folders on iCloud Drive.
    Go figure ...
    Hope that this helps someone else.
    Jon

  • Problems with apex and anychart (using reverse proxy)

    Hi,
    Im using 2 Servers. The first with Apache2 and the /i/ directory and the second with a Oracle XE Database.
    The imagedirectory is at the first server.
    Heres my Apache Setup:
    <Location /apex>
    Options None
    Order allow,deny
    allow from all
    ProxyPass http://..(remote_ip)..:8080/apex
    ProxyPassReverse http://..(remote_ip)..:8080/apex
    </Location>
    Alias /i/ /var/i/
    <Directory "/var/i/">
    Options None
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    if I open a page with a anychart chart I get this error:
    "Flash Security Error
    Anychart can not be launched due to Flash Security Settings violation.
    Please refer to Security error Article in Anychart Documentation..."
    http://www.anychart.com/products/anychart/docs/users-guide/index.html?security-error.html
    I think I have to place a crossdomain.xml
    Placing the crossdomain.xml in example.com/ root-directory doesn't work?
    thanks for any help

    Hi Christoph,
    Yes, the APEX Listener works with Oracle XE. The APEX Listener is currently an Early Adopters release, and is available for download from here: http://www.oracle.com/technology/products/database/application_express/html/apex_listener_download.html. I would recommend reviewing the accompanying Installation Guide before proceeding. There's an 'APEX Listener Feedback' thread - APEX Listener Feedback - which may also proof useful to you. There's also another related thread on this topic: Re: #HOST# Substituin incorrect for charts via Reverse Proxy which discusses the replacement of the #HOST# substitution string.
    Regards,
    Hilary

  • Having problem with adding and reading dates to/from database !!!

    Hi
    I am new in J2ME
    I am trying to code a simple software.
    My problem is with dates.
    I have a datefield on my menu and the user will choose the date from here. By default, datefield shows todays date. But when I try to write that date to database using rms, date value transforms to java.util.Date@acfdb0fe.
    As I read from tutorials this is common problem of date class, so I tried to use calendar class.
    But with Calendar class I cannot let user to choose date from screen like DateField. datefield dowsn't work with calendar.
    later, I will use that date for sorting records
    Summary : I need a sample code that read date from screen (preferably with datefield), write it to recordstore. and then read it from recordstore asnd write to screen.
    I searching internet for a sample code through days.
    Please help me
    Thanks

    Hi,
    The best i would suggest is instead of storing the date as 19 Jan 2004 or something like this better store the date in milliseconds.
    DateField df = new DateField();
    Date d = df.getDate();
    long ms = d.getTime();
    store the value of ms in RMS. This is the commonly used way to store date in RMS for j2me.
    You can get back date using
    Date d = new Date(ms);
    DateField df = new DateField();
    df.setDate(d);
    Prabhu.

  • Problems with Vista and Reader 8.12 - unusual problem need help

    I can't seem to find anyone to help me or any record of someone else having this problem. As soon as I install reader 8.12 on my new system (Vista) it begins 'hijacking' other files. In other words other icons on my desktop (e.g., the icon for AOL IM) turn into PDF icons and so when I try to launch an .exe file - Reader launches instead and of course tells me it can't open the file. This is so maddening. I've installed and unstalled the program several times and have rebooted. I've tried to contact Adobe but they will not provide support, I've contacted Gateway and they say it's an Adobe issue and Microsoft won't speak with me because Vista was pre-installed on the computer. If anyone has any ideas and can assist me I'd greatly appreciate it. For now I just have to leave the program uninstalled and therefore can't open any PDFs.
    Anita

    It seems that in Vista bad things may happen if you ever choose a
    program to open downloaded EXE files.
    This may help with the EXE issue:
    http://www.winhelponline.com/articles/165/1/Restore-the-exe-file-association-in-Windows-Vi sta-after-incorrectly-associating-it-with-another-application.html
    Aandi Inston

  • Random problems with Mail and ACL

    Am running 10.5.2 on a 2.8 GHz Intel iMac
    Have been experiencing problems with Mail.
    As I'm the only user I've set up Mail Preferences so that a password isn't required every time. However, on occasions, but not always, I get a repeated request for my password - on two of the three Mail accounts I have. No matter how many times I key in the password I keep being asked again. The only solution is to shut the computer down and come back to it sometime later when - most times - it works fine.
    I have an iPod Touch which lifts mail off my server, via the same wifi connection and it works fine.
    Then I had a problem where I couldn't quit Mail. I rebooted several times but Mail continued to refuse to Quit. I had to do a Force Quit every time.
    I've tried repairing permissions. Takes ages then get the following relating to ACL's.
    Whilst I've been using Macs since the mid 80's I'm not a techie and haven't got a clue what ACL's are or what they do.
    In the past when I've (regularly) run Repair Permissions as part of my system housekeeping I've had no problems.
    However, now when I run a Permissions repair this is what I get:
    Repairing permissions for “Macintosh HD”
    Permissions differ on "private/var/log/secure.log", should be -rw------- , they are -rw-r----- .
    ACL found but not expected on "System/Library/User Template/English.lproj/Sites".
    Group differs on "Library/PreferencePanes", should be 0, group is 80.
    Permissions differ on "Library/PreferencePanes", should be drwxr-xr-x , they are drwxrwxr-x .
    ACL found but not expected on "System/Library/User Template/English.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/English.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/English.lproj/Downloads".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/MIDI Drivers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Compositions".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Input Methods".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Screen Savers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Voices".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library".
    ACL found but not expected on "System/Library/User Template/English.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/English.lproj/Music".
    ACL found but not expected on "System/Library/User Template/English.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/English.lproj/Public".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/lib/jvm.cfg", should be 0, user is 95.
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/classlist" , should be 0, user is 95.
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Public".
    ACL found but not expected on "System/Library/User Template/German.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/German.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/German.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library".
    ACL found but not expected on "System/Library/User Template/German.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/German.lproj/Music".
    ACL found but not expected on "System/Library/User Template/German.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/German.lproj/Public".
    ACL found but not expected on "System/Library/User Template/French.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/French.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/French.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library".
    ACL found but not expected on "System/Library/User Template/French.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/French.lproj/Music".
    ACL found but not expected on "System/Library/User Template/French.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/French.lproj/Public".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Public".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Public".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Public".
    ACL found but not expected on "System/Library/User Template/da.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/da.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/da.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library".
    ACL found but not expected on "System/Library/User Template/da.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/da.lproj/Music".
    ACL found but not expected on "System/Library/User Template/da.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/da.lproj/Public".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Music".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Public".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Music".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Public".
    ACL found but not expected on "System/Library/User Template/no.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/no.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/no.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library".
    ACL found but not expected on "System/Library/User Template/no.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/no.lproj/Music".
    ACL found but not expected on "System/Library/User Template/no.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/no.lproj/Public".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Music".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Public".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Music".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Public".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Music".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Public".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Music".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Public".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Music".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Public".
    Permissions repair complete
    After a reboot I ran Permissions Fix again, several times, every time with the same results?
    I went into into System/Library/User Template but the folder has a "no entry" i.e. red circle with white horizontal bar. I clicked on this but get message I don't have sufficient access privileges.
    I'm the only user and admin.
    Can someone tell me what's going on?

    Hi Charlie,
    The Mail app is requesting my password - again and again.
    The odd thing is that I have a three email accounts - all set up with the password stored in Mail Prefs so I don't have to enter each time - but only two accounts give me problems.
    The other strange thing is that when I boot up the computer first thing in the morning and check my mail there's rarely (if ever) a problem.
    I leave the computer on during the day then check my mail again after lunch - when the computer has been 'sleeping'. It's usually then that I hit a problem. Even rebooting at this stage doesn't always work. It's as if my iMac needs be shut down for several hours to work consistently.
    Something else I realised yesterday was that when the computer has been sleeping and I check Mail (in the afternoon) and Mail starts requesting password over and over again - and the black whirly hovers over the account - its often impossible to do a simple Quit on Mail. I have to do a Force Quit.
    First time I've ever experienced such confusing problems with Macs - and been using them since around 1986!

  • Help with writing and retrieving data from a table field with type "LCHR"

    Hi Experts,
    I need help with writing and reading data from a database table field which has a type of "LCHR". I have given an example of the original code but don't know what to change it to in order to fix it and still read in the original data that's stored in the LCHR field.
    Basically we have two Function modules, one that saves list data to a database table and one that reads in this data. Both Function modules have an identicle table which has an array of fields from type INT4, CHAR, and type P. The INT4 field is the first one.
    Incidentally this worked in the 4.7 non-unicode system but is now dumping in the new ECC6 Unicode system.
    Thanks in advance,
    C
    SAVING THE LIST DATA TO DB
    DATA: L_WA(800).
    LOOP AT T_TAB into L_WA.
    ZDBTAB-DATALEN = STRLEN( L_WA ).
    MOVE: L_WA to ZDBTAB-RAWDATA.
    ZDBTAB-LINENUM = SY-TABIX.
    INSERT ZDBTAB.
    READING THE DATA FROM DB
    DATA: BEGIN OF T_DATA,
                 SEQNR type ZDBTAB-LINENUM,
                 DATA type ZDBTAB-RAWDATA,
               END OF T_TAB.
    Select the data.
    SELECT linenum rawdata from ZDBTAB into table T_DATA
         WHERE repid = w_repname
         AND rundate = w_rundate
         ORDER BY linenum.
    Populate calling Internal Table.
    LOOP AT T-DATA.
    APPEND T_DATA to T_TAB.
    ENDLOOP.

    Hi Anuj,
    The unicode flag is active.
    When I run our report and then to try and save the list data a dump is happening at the following point
    LOOP AT T_TAB into L_WA.
    As I say, T_TAB consists of different fields and field types whereas L_WA is CHAR 800. The dump mentions UC_OBJECTS_NOT_CONVERTIBLE
    When I try to load a saved list the dump is happening at the following point
    APPEND T_DATA-RAWDATA to T_TAB.
    T_DATA-RAWDATA is type LCHR and T_TAB consists of different fields and field types.
    In both examples the dumps mention UC_OBJECTS_NOT_CONVERTIBLE
    Regards
    C

  • "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)

    We are getting the following error "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)" and a gray screen appears (Image not viewable) with multiple users. We are using Adobe Reader XI (11.0.05) and (11.0.06). The current workaround is to log off the website and log back in. Once the user logs back in, the pdf will appear. However it occurs anywhere from 2-8 times in a day. Anyone else having this issue or know of another workaround? Any suggestion with how to fix? Please help!!

    Hi Valerie,
    Please let me know the version of Adobe Acrobat/Reader & operating system installed on your computer?
    Also, try this:-
    Launch Adobe Reader/Acrobat.
    From the menu, choose Edit -> preferences -> General
    Uncheck the option for "Enable Protected Mode at startup"
    Restart the Adobe Reader and web browser.
    Regards,
    Aadesh

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • I have an older version of Adobe Digital Editions (around 3 years old) and was very happy with it.  Then I had problems with my Kobo Reader and asked a friend who works in IT to assist. She could not fix the Kobo but she messed up my Addobe. She downloade

    I have an older version of Adobe Digital Editions (around 3 years old) and was very happy with it.
    Then I had problems with my Kobo Reader and asked a friend who works in IT to assist. She could not fix the Kobo but she messed up my Addobe. She downloaded version three and I have an account and a password - was not able to transfer my books from my reader to version three (and I don't like the lay-out - I would prefer to stay with the old version as I also loose all my download date info..)
    But all the books I have bought over the last three years are in the old Adobe Digital and I cannot access them any more. When I use it I get the message "that the document is licensed to a different account. I can't even open the books on my computer.
    When I go to my Kobo library, I cannot also not open my books and get the message "this doc is protected by adobe digital rights management and is not currently authorized for use with your adobe. please sign in with your authorized adobe id and try again"
    I believe the problem is that I do not seem to have a digital id for my old adobe or that the Kobo is not in sync with it anymore.
    can you please help me - going on vacation in three days and cannot go without books.

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • TS3899 With Yahoo Mail, and anotare account (Inacap Mail), I can only receive mails but I can't send emails. I don't know if this is a problem of the iPad or it is a problem with yahoo mail, because using Gmail and the email of my job I don' have this pro

    With Yahoo Mail, and anotare account (Inacap Mail), I can only receive mails but I can't send emails. I don't know if this is a problem of the iPad or it is a problem with yahoo mail, because using Gmail and the email of my job I don' have this problem.

    Google them to confirm the settings that you need for the outgoing server, then check the setting you entered on the pad.  Pay real close attention to the outgoing server name, and port.  You may need to change in on the pad. 

  • There is a problem with adobe acrobat reader please exit adobe acrobat reader and try again 101:101

    I'm trying to access some web PDF files via SharePoint Application but i got this error message "there is a problem with adobe acrobat reader please exit adobe acrobat reader and try again 101:101"
    my operating system is Win 7 and I'm using Adobe Acrobat Pro 11.0

    I'm having the same problem. Only I have Windows XP and at the end of the error message it shows 103.103. Please let me know if and when you get an answer or remedy to this problem. Thanks!

  • I get an error window that says There is a problem with adobe acrobat reader if it is running please exit and try again. Alittle help here PLEASE!!

    Can any one help me with this problem??

    Hi garryw,
    What version of Reader are you using, and are you on Mac OS or Windows? Do you get the same error when you try to print other PDF files, or is the problem specific to one PDF?
    For starters, please try the solutions listed in this thread: Re: There is a problem with Adobe Acrobat /Reader. If it is running ,please exit and try again.(0:104)
    Let us know how it goes.
    Best,
    Sara

  • There is a problem with Adobe Acrobat/Reader. If it is running please exit and try again. (0:521)

    There is a problem with Adobe Acrobat/Reader. If it is running please exit and try again. (0:521)
    Although I have found other threads in this forum relating to this error - none of the fixes appear to work. I've not found precisely the same error number (0:521), might I need a different fix for this? Has anyone else had the same error?
    Just to note, this appears to be an issue with Internet Explorer 8 on Windows 7 while viewing pdfs 'in-browser' i.e. using the plugin. Other versions of IE on other machines and FF on the same machine work fine on the same pdfs. It also works if you right click the pdf, download and view it in Acrobat Reader 'locally'.
    Any help greatly appreciated, I'm stumped.

    We were getting the same error on a Win 7 machine which had Acrobat 7 (running in compatability mode) and Reader X installed.  When the user was trying to open the link from an email the error 'There is a problem with Adobe Acrobat.....(0:521) would appear and the pdf would not load.
    Investigating the problem I can across an article to uncheck the option "Display PDF in browser" (in the application choose Edit -> Preferences -> Internet).  Undertaking this procedure in Acrobat Reader X however, I could not uncheck this and the path the app was showing was for Acrobat 7!?!
    Therefore, opened Acrobat 7 and undertook the same procedure.  Unchecked the "Display PDF in browser" (in the application choose Edit -> Preferences -> Internet) which I was able to do, saved and closed the application.
    Rechecked Acrobat X and the "Display PDF in browser" could be deselected and the path was now for ..\Reader 10.0\Reader\AcroRd32.exe
    Retried the original email with the link to the pdf and it now opens without error.
    Not too sure if this will help but just thought I would share.

Maybe you are looking for

  • Comparing char in a string to strings in a txt file

    Hi guys, i am dveloping a scrabble application for a project in jvava. Currently, i am trying to work on coding a computer player to play against a human, ive finished all the game logic nd 2 human players can successfully play on the same system. My

  • Call Actionscript function from Javascript

    Can anyone show me a simple example of calling an actionscript function from within javascript? Everything I have found searching online refers to using the ExternalInterface but I was sure I also read that Adobe Air does not support it. I am current

  • Background in Nokia MixRadio doesn't change.

    The problem is very simple, when you add your favorite artists in the app, the background should change and show those artists. The thing is my app shows the first artist I added almost a year ago when I first opened MixRadio and no matter what I do

  • Delegated Admin and non-flat user/group structures

    Hello, I am trying to build a directory structure with several containers under an organization used to store different portions of userdata and group data (i.e. not only ou=people and ou=group, but also a few ou's like them). Server software is from

  • Key frames effect controls and Fast color correction

    I just learned about keyframes and gradual transistion of effects and i like that a lot. Putting it in practice using the Fast color correction feature ; I seemed to miss the key navigation bar (I hoped to find it on the right side of the Fast Color