What do I do now about opening files

I get this message most often - except for recently created files: Adobe Reader could not open 'golf flyer.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).  Should I re-install?

See http://forums.adobe.com/thread/1408375

Similar Messages

  • Question about openning files using SDK 10.

    I have written a Plug-In for SDK 9 that works wonderfully. One of the functions is for the user to be able to page (Next/Previous) between PDF files on our server. This functionality now longer works without crashing Acrobat 10. All I am doing is creating the URL path to the next/previous PDF, creating a CustomFileSys with the path and calling AVDocOpenFromFile.
    Does this no longer work with Acrobat 10 SDK?
    Thanks!

    Should work fine, AFAIK.
    For this level of issue, I would open a formal support request with developer support.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 10 Oct 2011 08:51:08 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Question about openning files using SDK 10.
    Question about openning files using SDK 10.
    created by Greggars<http://forums.adobe.com/people/Greggars> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/3963065#3963065

  • Need help fast about opening file

    hello i have this 2 classes to open file and display it .the open method works fine but when ever i try to open different file it adds the new data and display both . the problem is it not suppose to add the new data to the old list it should only show the new data only ...can any one help thx
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class RoomGUI extends JFrame
       private RoomSortedList list;
         // Menu items:
       private JMenuItem mOpen;
       private JMenuItem mSaveAs;
       private JMenuItem mExit;
         // Displayed regions of the window:
         private JTextField messageField;
         private JTextArea textArea;
          * Constructor for RoomGUI object to set up
          * GUI window with menu.
         public RoomGUI()
              list=new RoomSortedList();     
         // Components to display on window:
              messageField = new JTextField();
              messageField.setEditable(false);
              textArea = new JTextArea();
              textArea.setEditable(false); 
                        // Arrnge components on window:
              Container contentPane = getContentPane();
              contentPane.add(messageField, BorderLayout.SOUTH);
              JPanel centerPanel = new JPanel();
              contentPane.add(centerPanel, BorderLayout.CENTER);
              centerPanel.setLayout(new GridLayout(1,1));
              centerPanel.add(new JScrollPane(textArea));
    //  Create menu items for the "File" menu:
          mOpen = new JMenuItem ("Open");
          mSaveAs = new JMenuItem ("SaveAs");
          mExit = new JMenuItem ("Exit");
          //  Create "File" menu:
          JMenu fileMenu = new JMenu ("File", /*tearoff =*/ false);
          fileMenu.add(mOpen);
          fileMenu.add(mSaveAs);
          fileMenu.add(mExit);
          // Create menu bar:
          JMenuBar mainMenuBar = new JMenuBar();
          mainMenuBar.add(fileMenu);
          // Put menu bar on this window:
          setJMenuBar(mainMenuBar);
         mOpen.addActionListener( new FileOpener(textArea,list) );
         mSaveAs.addActionListener( new FileSaver(list) );
          mExit.addActionListener(new Quitter());
              // Routine necessities with JFrame windows:
              setSize(500, 400);
              setLocation(200, 100);
              setTitle("Project 4");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setVisible(true);
         } // constructorfile opener
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class FileOpener implements ActionListener
         private RoomSortedList list;
         private JTextArea textArea=new JTextArea();
              private int returnvalue;
              private String filename;
              private JTextField messageField;
         public FileOpener(JTextArea ta,RoomSortedList ls)
              this.textArea=ta;
              this.list=ls;
         public void actionPerformed(ActionEvent e)
              list =new RoomSortedList();
              messageField = new JTextField();
              JFileChooser filechooser = new JFileChooser();
             // if a file is selected returnvalue = 0
             // else if cancel button is pressed
             // returnvalue = 1
             returnvalue = filechooser.showOpenDialog(null);
             //if open is selected then return filename
             if (returnvalue == filechooser.APPROVE_OPTION){
                filename = filechooser.getSelectedFile().toString();
                // now read the rooms from the file with the name filename
                // invoke the readfile method
                readFile(filename);
                messageField.setText(filename);
             }//if
             // if cancel is selected then close the filechooser
             else if (returnvalue == filechooser.CANCEL_OPTION)
                filechooser.cancelSelection();
       * Reads room data from a text file.Check if each lines are in valid room
       * format, and values. Catches exception errors for any invalid lines or
       * values thrown by ParseRoom or Room constructors.
       * Valid lines are appended to an sorted linked list. 
       * @param filename     name of file containing
       private void readFile(String filename)
           JFrame errorD=new JFrame();
          String str=null;
          Room r=null;
          int linenum=0;
          TextFileInput Obj=null;
          try
             Obj = new TextFileInput(filename);
          catch (RuntimeException rte)
             System.out.println(rte.getMessage());
          while (true)
             str = Obj.readLine();
             linenum++;
             if (str==null) break; // to stop reading lines at the end of file
             try
                r = RoomTextFormat.parseRoom(str);
             catch (RoomTextFormatException rtf)
                JOptionPane.showMessageDialog(errorD, "Error reading line # " +
                   linenum + ": " + str + "\n" + rtf.getMessage() + "\n"+
                   "This line of text has been excluded from the list.",
                   "Text Format Error", JOptionPane.ERROR_MESSAGE);
                continue;
             catch (IllegalRoomException ire)
                JOptionPane.showMessageDialog(errorD, "Error reading line # " +
                   linenum + ": " + str + "\n" + ire.getMessage() + "\n" +
                   "This line of text has been excluded from the list.",
                   "Room Instantiation Error", JOptionPane.ERROR_MESSAGE);
                continue;
             list.insert (r);
             textArea.setText("");
                RoomListIterator MyIterator = list.beginIterating();
                int c=1;
                while (MyIterator.hasNext())
                   Room m = MyIterator.next();
                   textArea.append(c + ": " + m + "\n");
                   c++;
                }//while
          }// while (true)
       } // readFile()
    }

    i apologize again.thx anyway . heres the code
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class RoomGUI extends JFrame
         private RoomSortedList list;
         // Menu items:
         private JMenuItem mOpen;\
         // Displayed regions of the window:
         private JTextField messageField;
         private JTextArea textArea;
          * Constructor for RoomGUI object to set up
          * GUI window with menu.
         public RoomGUI()
              list=new RoomSortedList();     
              // Components to display on window:
              messageField = new JTextField();
              messageField.setEditable(false);
              textArea = new JTextArea();
              textArea.setEditable(false); 
              // Arrnge components on window:
              Container contentPane = getContentPane();
              contentPane.add(messageField, BorderLayout.SOUTH);
              JPanel centerPanel = new JPanel();
              contentPane.add(centerPanel, BorderLayout.CENTER);
              centerPanel.setLayout(new GridLayout(1,1));
              centerPanel.add(new JScrollPane(textArea));
                  //Create menu items for the "File" menu:
              mOpen = new JMenuItem ("Open");
              //  Create "File" menu:
              JMenu fileMenu = new JMenu ("File", /*tearoff =*/ false);
              fileMenu.add(mOpen);
              // Create menu bar:
              JMenuBar mainMenuBar = new JMenuBar();
              mainMenuBar.add(fileMenu);
              // Put menu bar on this window:
              setJMenuBar(mainMenuBar);
              mOpen.addActionListener( new FileOpener(textArea,list) );
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setVisible(true);
         } // constructor
    } // class RoomGUIopen file
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class FileOpener implements ActionListener
         private RoomSortedList list;
         private JTextArea textArea=new JTextArea();
              private int returnvalue;
              private String filename;
              private JTextField messageField;
         public FileOpener(JTextArea ta,RoomSortedList ls)
              this.textArea=ta;
              this.list=ls;
         public void actionPerformed(ActionEvent e)
              list =new RoomSortedList();
              messageField = new JTextField();
              JFileChooser filechooser = new JFileChooser();
             // if a file is selected returnvalue = 0
             // else if cancel button is pressed
             // returnvalue = 1
             returnvalue = filechooser.showOpenDialog(null);
             //if open is selected then return filename
             if (returnvalue == filechooser.APPROVE_OPTION){
                filename = filechooser.getSelectedFile().toString();
                readFile(filename);
                messageField.setText(filename);
             }//if
             // if cancel is selected then close the filechooser
             else if (returnvalue == filechooser.CANCEL_OPTION)
                filechooser.cancelSelection();
       private void readFile(String filename)
          String str=null;
          TextFileInput Obj=null;
             Obj = new TextFileInput(filename);
          while (true)
             str = Obj.readLine(); // 
             if (str==null) break; // to stop reading lines at the end of file
             list.insert (str);
             textArea.setText("");
                RoomListIterator MyIterator = list.beginIterating();
                int c=1;
                while (MyIterator.hasNext())
                   Room m = MyIterator.next();
                   textArea.append(c + ": " + m + "\n");
                   c++;
                }//while
          }// while (true)
       } // readFile()
    }

  • HELP What app. do I need to open files to SD Card

    null
    Post relates to: Tungsten E2

    Hi, and welcome to the Palm Community Forums.
    I'm not sure what you mean, but if your question is how do you open files which are stored on your SD card, it depends on what type of file it is.  If it is a Palm application, you should see it listed in the Category list from the application launcher (Home) screen.  If it is a document, Documents To Go can find all compatible documents.  If it is a database for a Palm application, it will depend on that application as to whether, and how, it can access the file.
    If what you want to do is to view the files that are on your SD card, use the free file management utility FileZ.
    Please be more specific in what it is you are trying to do.
    Post relates to: Centro (AT&T)
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • Photoshop CS5 - what is causing major delay when opening files?

    New laptop running windows 7, 64 bit machine, i5 intel core processor, NVIDIA NVS 3100M graphics card. When I open new pictures in photoshop there is a significant delay - the pointer just sits for several seconds seeming to 'look' for files, then the round (new hourglass in 7) rotates forever!  I timed this new machine with a 7 year old Dell Latitute running CS1 photoshop - opened 11 photos from each hard drive...the 7 year old computer opened them in 15 seconds, the NEW machine took 80 seconds. I'm not trying to do anything fance with Photoshop, just simple photo corrections, so I don't need a fancy graphics card. WHY is it taking so long to open files - I've changed every setting Adobe recommends and nothing helps.  Any suggestions would be greatly appreciated!!

    here's the log - i just opened photoshop - i didn't open any photos before copying the log.
    2010-10-05 15:06:19 [2308]  AMT: START SESSION, library version 3.0.0.64,3.0
    2010-10-05 15:06:19 [2308]  AMT: Initializing C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\
    2010-10-05 15:06:19 [2308]  AMT: Adobe License Manager version 3.2 (build 64.0) RELEASE
    2010-10-05 15:06:19 [2308]  AMT: Virtualization Turned off
    2010-10-05 15:06:19 [2308]  ServiceLoader: looking for library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\adobe_caps.dll
    2010-10-05 15:06:19 [2308]  ServiceLoader: Found library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\adobe_caps.dll
    2010-10-05 15:06:19 [2308]  PCDService: PCD Service in threaded mode
    2010-10-05 15:06:19 [2308]  performance: AMTPreObtainProductLicense took 2.960505 ms
    2010-10-05 15:06:19 [2308]  PCD thread: PCD thread started
    2010-10-05 15:06:19 [2308]  ServiceLoader: looking for library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Adobe_OOBE_Launcher.dll
    2010-10-05 15:06:19 [2308]  ServiceLoader: Found library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Adobe_OOBE_Launcher.dll
    2010-10-05 15:06:19 [2308]  AMT: App Product Locale [0] = en_US
    2010-10-05 15:06:19 [2308]  config: Loading configuration for C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\AMT\application.xml
    2010-10-05 15:06:19 [2308]  config: Found payload code {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
    2010-10-05 15:06:19 [2308]  PCDService: found driver code {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:19 [2308]  config: config: Host app was installed, using installed license configuration.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [FLMap] in hive [Photoshop-CS5-Win-GM{|}ALL] in cache.
    2010-10-05 15:06:19 [2308]  config: Setting current license to the driver at startup because no mapping was found.
    2010-10-05 15:06:19 [2308]  config: Setting current license to DesignSuiteStandard-CS5-Win-GM [ALL]
    2010-10-05 15:06:19 [2308]  config: payload code: {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
    2010-10-05 15:06:19 [2308]  config: driver payload code: {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:19 [2308]  config: driver licensing code: DesignSuiteStandard-CS5-Win-GM
    2010-10-05 15:06:19 [2308]  config: current licensing code: DesignSuiteStandard-CS5-Win-GM
    2010-10-05 15:06:19 [2308]  config: current locale code: ALL
    2010-10-05 15:06:19 [2308]  config: Done loading configuration
    2010-10-05 15:06:19 [2308]  AMT: Locale from PCD [0] = en_US
    2010-10-05 15:06:19 [2308]  AMT: Reordered Installed App Product Locale [0] = en_US
    2010-10-05 15:06:19 [2308]  config: Setting insalled locales
    2010-10-05 15:06:19 [2308]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2010-10-05 15:06:19 [2308]  ServiceLoader: looking for library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\asneu.dll
    2010-10-05 15:06:19 [2308]  ServiceLoader: Found library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\asneu.dll
    2010-10-05 15:06:19 [2308]  AMT: config: Finding license info for payload: {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:19 [2308]  AMT: config: PayloadCode: {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
    2010-10-05 15:06:19 [2308]  AMT: config: Driver PayloadCode: {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:19 [2308]  AMT: config: Installed LicensingCode: DesignSuiteStandard-CS5-Win-GM
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [BridgeTalkCode] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [Photoshop-CS5-Win-GM] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [EULA] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [Registration] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [Registration] in hive [{667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [Updates] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [Updates] in hive [{667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}] in master.
    2010-10-05 15:06:19 [2308]  AMT: Application can be serialized (sif file found).
    2010-10-05 15:06:19 [2308]  config: Setting current license to DesignSuiteStandard-CS5-Win-GM [en_US]
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [AMTConfigPath] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in cache.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [ExpirationDate] in hive [Photoshop-CS5-Win-GM] in master.
    2010-10-05 15:06:19 [2308]  AMT: Subsequent launch (serial [95478022976966362461]).
    2010-10-05 15:06:19 [2308]  AMT: Application state initialized.  Obtaining Product License.
    2010-10-05 15:06:19 [2308]  AMT: Obtaining client features from cache.
    2010-10-05 15:06:19 [2308]  AMT: Obtaining client product info from cache.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [ExpirationDate] in hive [Photoshop-CS5-Win-GM] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [ExpirationDate] in hive [Photoshop-CS5-Win-GM] in master.
    2010-10-05 15:06:19 [2308]  AMT: Running in PROV_APP
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [EULADelay] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [EULADelay] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  PCDService: No value for key [MediaTag] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:19 [2308]  config: No media tag found for payload {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:19 [2308]  config: Using default media policy RET
    2010-10-05 15:06:19 [2308]  uiswitch: EULA has already been accepted.
    2010-10-05 15:06:19 [2308]  AMT: This is a subsequent launch. Deferring services.
    2010-10-05 15:06:19 [2308]  performance: AMTObtainProductLicense took 55.274246 ms
    2010-10-05 15:06:24 [2308]  AMT: Pre-Validating Product License.
    2010-10-05 15:06:24 [2308]  AMT: Services not yet loaded in this session.
    2010-10-05 15:06:24 [2308]  AMT: Loading services in background to get ready for Validate call.
    2010-10-05 15:06:24 [2308]  AMT: Spawning background thread to load services.
    2010-10-05 15:06:24 [2308]  performance: AMTPreValidateProductLicense took 0.289324 ms
    2010-10-05 15:06:24 [2308]  AMT: Starting work on prevalidate thread.
    2010-10-05 15:06:24 [2308]  AMT: AMT: PreValidating Product License.
    2010-10-05 15:06:24 [2308]  AMT: Launch Workflow not yet done in this session.
    2010-10-05 15:06:24 [2308]  AMT: Starting Background Subsequent Launch Workflow
    2010-10-05 15:06:24 [2308]  AMT: Starting ALM workflow.
    2010-10-05 15:06:24 [2308]  AMT: Initializing ALM for serialized activation.
    2010-10-05 15:06:24 [2308]  ALMService: Initializing as licensed app
    2010-10-05 15:06:24 [2308]  ALM: _info_: Start ALM 3.2 Release (build 3.2.64.0)
    2010-10-05 15:06:24 [2308]  SLCoreService: Starting up SLCore 1.0 Release (build 1.0.13.199023).
    2010-10-05 15:06:24 [2308]  SLCoreService: Service construction took 0.0 ms and succeed.
    2010-10-05 15:06:24 [2308]  ALM: _info_: LEID passed DesignSuiteStandard-CS5-Win-GM is used to configure SLCore = 0
    2010-10-05 15:06:24 [2308]  ALM: _info_: Host app is Licensable App
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [Photoshop-CS5-Win-GM{|}6] in hive [SSC-CS5-LE-Dominance] in master.
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found LEID Photoshop-CS5-Win-GM with AMT Path C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\AMT
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found LEID DesignSuiteStandard-CS5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 5 Design Standard\AMT
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found LEID WebSuitePremium-CS5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\WebSuitePremium-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found LEID DesignSuitePremium-CS5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\DesignSuitePremium-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found LEID VideoSuitePremium-CS5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\VideoSuitePremium-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found LEID MasterCollection-CS5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\MasterCollection-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found LEID ELearningSuite-ES2-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\ELearningSuite-ES2-Win-GM
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [MediaTag] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:24 [2308]  config: No media tag found for payload {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:24 [2308]  config: Using default media policy RET
    2010-10-05 15:06:24 [2308]  ALM: _info_: MediaTagPolicy is RET
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [NTL_WO_SN] in hive [DesignSuiteStandard-CS5-Win-GM] in master.
    2010-10-05 15:06:24 [2308]  ALM: _info_: Canonical LEID is Photoshop-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  ALM: _info_: Driver LEID is DesignSuiteStandard-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [954787009147428486506077] in hive [RejectedSNDomain_CS5] in cache.
    2010-10-05 15:06:24 [2308]  SLCoreService: Reading product config [C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 5 Design Standard\AMT\SLConfig.xml]
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2010-10-05 15:06:24 [2308]  ALM: _info_: Set Running Locale to en_US
    2010-10-05 15:06:24 [2308]  ALM: _time_: (func: ALM_Initialize, duration: 0.015 sec)
    2010-10-05 15:06:24 [2308]  AMT: Performing ALM silent license verification.
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [EncryptedSerial] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in cache.
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [Serial] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in cache.
    2010-10-05 15:06:24 [2308]  config: No pre-serial number found in {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [PSN] in hive [DesignSuiteStandard-CS5-Win-GM{|}en_US] in cache.
    2010-10-05 15:06:24 [2308]  config: No en_US provisional serial number found in DesignSuiteStandard-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [PSN] in hive [DesignSuiteStandard-CS5-Win-GM{|}ALL] in cache.
    2010-10-05 15:06:24 [2308]  config: No ALL provisional serial number found in DesignSuiteStandard-CS5-Win-GM
    2010-10-05 15:06:24 [2308]  ALM: _info_: Validate license at Post-Chrome time, running locale is en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: Searching license for locale en_US ...
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [954780229769663624615500] in hive [RejectedSNDomain_CS5] in cache.
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2010-10-05 15:06:24 [2308]  ALM: _info_: Found existing serialization under LEID DesignSuiteStandard-CS5-Win-GM, the serial number locale is en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: This is the running locale, stop the search
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [954780229769663624615500] in hive [RejectedSNDomain_CS5] in cache.
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [954780229769663624615500] in hive [RejectedSNDomain_CS5] in cache.
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [954780229769663624615500] in hive [RejectedSNDomain_CS5] in cache.
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2010-10-05 15:06:24 [2308]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2010-10-05 15:06:24 [2308]  config: Setting current license to DesignSuiteStandard-CS5-Win-GM [en_US]
    2010-10-05 15:06:24 [2308]  SLCoreService: Syncing to license store...
    2010-10-05 15:06:24 [2308]  SLCoreService: Found server mkey.
    2010-10-05 15:06:24 [2308]  SLCoreService: Loading license references...
    2010-10-05 15:06:24 [2308]  SLCoreService: Found 1 license file(s)
    2010-10-05 15:06:24 [2308]  SLCoreService: Parsing license file [236980653.lic] succeed.
    2010-10-05 15:06:24 [2308]  SLCoreService: License store synchronization took 20.5 ms and succeed.
    2010-10-05 15:06:24 [2308]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [PDApp_WF] in hive [DesignSuiteStandard-CS5-Win-GM] in cache.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature ALM_CS5DesignStandardGM_5.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Bridge_Base_4.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Bridge_CameraRaw_4.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Bridge_ColorSettings_4.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Bridge_MiniBridge_1.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature CreativeSuite_5.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature CreativeSuite_DesignStandard_5.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Illustrator_15.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Illustrator_Base_15.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature InDesign_7.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature InDesign_Base_7.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature MediaEncoder_Base_2.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature MobileCenter_Base_3.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Photoshop_12.0 is enabled.
    2010-10-05 15:06:24 [2308]  SLCoreService: Feature Photoshop_Base_12.0 is enabled.
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [ALM_Info_S1] in hive [DesignSuiteStandard-CS5-Win-GM{|}en_US] in cache.
    2010-10-05 15:06:24 [2308]  ALM: _info_: Performing Block Check
    2010-10-05 15:06:24 [2308]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2010-10-05 15:06:24 [2308]  ALM: _info_: Block Check ByPassed
    2010-10-05 15:06:24 [2308]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2010-10-05 15:06:24 [2308]  ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.047 sec)
    2010-10-05 15:06:24 [2308]  ALM: _info_: ALM_License_SilentValidate return license status: Valid And Activated
    2010-10-05 15:06:24 [2308]  AMT: License check shows serialized product is already activated.
    2010-10-05 15:06:24 [2308]  ALM: _info_: Entered ALM_NeedANAG
    2010-10-05 15:06:24 [2308]  ALM: _info_: Exiting ALM_NeedANAG
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}] in master.
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [Updates] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:24 [2308]  PCDService: No value for key [Updates] in hive [{667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}] in master.
    2010-10-05 15:06:24 [2308]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2010-10-05 15:06:24 [2308]  ServiceLoader: looking for library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\updaternotifications.dll
    2010-10-05 15:06:24 [2308]  ServiceLoader: Found library C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\updaternotifications.dll
    2010-10-05 15:06:24 [2308]  AUMService: IsUpdaterEnabled call
    2010-10-05 15:06:25 [2308]  AUMService: IsUpdaterEnabled call succeeded
    2010-10-05 15:06:25 [2308]  ALM: _info_: Deactivation menu is enabled
    2010-10-05 15:06:25 [2308]  AMT: Completed Launch Workflow successfully.
    2010-10-05 15:06:25 [2308]  AMT: Calling AUM API to create scheduler entry to be used by updater.
    2010-10-05 15:06:25 [2308]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:25 [2308]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}] in master.
    2010-10-05 15:06:25 [2308]  PCDService: No value for key [Updates] in hive [{AE29D445-8164-4CD1-8824-FCE85C0BB179}] in master.
    2010-10-05 15:06:25 [2308]  PCDService: No value for key [Updates] in hive [{667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}] in master.
    2010-10-05 15:06:25 [2308]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2010-10-05 15:06:25 [2308]  AUMService: IsUpdaterEnabled call
    2010-10-05 15:06:25 [2308]  AUMService: IsUpdaterEnabled call succeeded
    2010-10-05 15:06:25 [2308]  AUMService: Get LEID xml call
    2010-10-05 15:06:25 [2308]  AUMService: Get LEID XML call succeeded
    2010-10-05 15:06:25 [2308]  AMT: AUM GetLEID called with status =0.
    2010-10-05 15:06:25 [2308]  AMT: Caching Suite Features.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature AfterEffects_Base 10.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Bridge_Base 4.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Bridge_CameraRaw 4.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Bridge_ColorSettings 4.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Bridge_MiniBridge 1.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Contribute_Base 6.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Dreamweaver_Base 11.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature DynamicLink_Base 4.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Encore_Base 5.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Fireworks_Base 11.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Flash_Base 11.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Flash_Pro 11.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature FlashBuilder_Base 4.1 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature FlashCatalyst_Base 1.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Illustrator_Base 15.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature InDesign_Base 7.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature MediaEncoder_Base 2.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature MobileCenter_Base 3.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature OnLocation_Base 5.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Photoshop_Base 12.0 is licensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Photoshop_Premium 12.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Premiere_Base 5.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Suite Feature Soundbooth_Base 3.0 is unlicensed.
    2010-10-05 15:06:25 [2308]  AMT: Checking client features against cache.
    2010-10-05 15:06:25 [2308]  AMT: Feature AMT_ALLOW_DRAGDROP_INSTALL 3.0 is unlicensed (was unlicensed).
    2010-10-05 15:06:25 [2308]  AMT: Feature AMT_REQUEST_NO_TAMPERPROOFING 3.3 is unlicensed (was unlicensed).
    2010-10-05 15:06:25 [2308]  AMT: Feature Photoshop_Premium 12.0 is unlicensed (was unlicensed).
    2010-10-05 15:06:25 [2308]  AMT: Feature Photoshop_Base 12.0 is licensed (was licensed).
    2010-10-05 15:06:25 [2308]  AMT: Feature Bridge_Base 4.0 is licensed (was licensed).
    2010-10-05 15:06:25 [2308]  AMT: Feature Bridge_CameraRaw 4.0 is licensed (was licensed).
    2010-10-05 15:06:25 [2308]  AMT: Feature MobileCenter_Base 3.0 is licensed (was licensed).
    2010-10-05 15:06:25 [2308]  AMT: Validating client product info against cache.
    2010-10-05 15:06:25 [2308]  PCDService: No value for key [ExpirationDate] in hive [Photoshop-CS5-Win-GM] in master.
    2010-10-05 15:06:25 [2308]  AMT: Starting Data Collection for SWTag_Init()
    2010-10-05 15:06:25 [2308]  AMT: DoISOTagging() productCanonicalLEID = Photoshop-CS5-Win-GM;outMappedLEID =  DesignSuiteStandard-CS5-Win-GM, unused = DesignSuiteStandard-CS5-Win-GM
    2010-10-05 15:06:25 [2308]  AMT: DoISOTagging() productPayloadCode = {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84};driverPayloadCode =  {AE29D445-8164-4CD1-8824-FCE85C0BB179}
    2010-10-05 15:06:25 [2308]  AMT: SWTag_Init() Tags Arguments Adobe Creative Suite 5 Design Standard; DesignSuiteStandard-CS5-Win-GM; en_US
    2010-10-05 15:06:25 [2308]  AMT: DoISOTagging() License Status = activated
    2010-10-05 15:06:25 [2308]  AMT: DoISOTagging() Tags 954780229769663624615500; 5.0; UNKNOWN
    2010-10-05 15:06:25 [2308]  AMT: DoISOTagging() Product Version 5; 0
    2010-10-05 15:06:25 [2308]  AMT: AMT: Product License PreValidated.
    2010-10-05 15:06:25 [2308]  AMT: Prevalidate indicates license is good and no UI required.
    2010-10-05 15:06:25 [2308]  performance: PreValidate thread took 175.239548 ms
    2010-10-05 15:06:25 [2308]  AMT: PlugPlug : AdobeId has been created or SN with no SaaS bit
    2010-10-05 15:06:25 [2308]  AMT: PlugPlug : Can Go Online returned as true
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 19.133877 ms
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 1.438921 ms
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 1.928826 ms
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 1.666247 ms
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 1.559270 ms
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 11.914555 ms
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 2.501396 ms
    2010-10-05 15:06:25 [2308]  performance: AMTPlugPlugRequest took 2.070246 ms
    2010-10-05 15:06:26 [2308]  performance: AMTPlugPlugRequest took 2.714134 ms
    2010-10-05 15:06:26 [2308]  performance: AMTPlugPlugRequest took 2.050796 ms
    2010-10-05 15:06:26 [2308]  performance: AMTPlugPlugRequest took 2.605536 ms
    2010-10-05 15:06:26 [2308]  performance: AMTPlugPlugRequest took 2.452770 ms

  • Itunes 11.1.5 crash, wiped out library and now not opening files

    Itunes 11.1.5 crashed on my Mac OSX 7.5, wiping out my Itunes library and playlists. I have the albums on my hard drive but can't even open them with Itunes now (I can open them with other programs). I've tried redownloading Itunes thinking that somehow the program was damaged, but same problem with the fresh download. I have my playlists etc on my Ipod but don't want to do connect it until I'm sure that Itunes is functioning correctly- am reluctant to risk losing the data on my Ipod too.
    What's wrong with Itunes that I can't open or add any files? And once that is fixed, is there any way of recovering my past library and playlists? Or if not, how do I safely transfer my Ipod's data to Itunes? It is not all Itunes purchases.

    Okay, an update. Weird. I tried importing a cd into Itunes, and not only did that work, but when it was completed all the music from my hard drive's Itunes media library appeared in Itunes too. Not the playlists, but at least the albums. Odd, since for hours this morning I couldn't import even a single song. Assuming I have to manually recreate the playlists, that there's no easy way to recover those. At least Itunes appears to otherwise be functioning tho.

  • Quick time will now not open files recorded on a FS H200, arrgh help if you can

    with recent updates to quick time i can no longer open. footage recorded on the FS-H200. ive tried the HDfile converter from focus with no success. help me if you can were losing money, clients and now my hair!!!
    Thanks B

    with recent updates to quick time i can no longer open. footage recorded on the FS-H200. ive tried the HDfile converter from focus with no success. help me if you can were losing money, clients and now my hair!!!
    Never heard of the unit until I saw your reference. Unfortunately, you did not mention which format/file type was used for recording, the application you are trying to open it with/in, or give any indication of your intended work flow, so it is somewhat difficult to know where/how to begin trying to determine possible workarounds here. Can you post a sample file for testing/examination along with additional information regarding your goals?

  • Upgraded now cannot open files

    At the prompt of App Store that updates were available for Numbers, I upgraded today to 3.0.1.  Now, I cannot access any of my spreadsheets.  The dialogue box comes back: "The file “xxxx” couldn’t be opened.  Even if I open a new document and try to save it, I get a message back: "The file “xxx.numbers” couldn’t be opened."
    It appears that following the App Store update, I how have two versions of Numbers: the new 3.0.1 updated today and an iWork'09 version 2.3 updated 5 December 2012.
    The 2.3 version can create new spreadsheets but it cannot open any of my existing files.
    I can open the same iCloud spreadsheets and edit them on my iPad with Numbers 2.0.1, but afterwards I can still not open them with Numbers 3.0.1 on my Mac and the spreadsheet manager on the Mac shows the spreadsheet as Zero bytes.
    MAC OS X 10.9 (13A603)   Numbers 3.0.1 (1483)   &  Numbers 2.3 (554)
    iOS 7.0.4 (11B554a)    Numbers 2.0.1 (1074)
    Thanks
    Mark

    Another post which I cannot find at the moment, had a response to restart/reboot the Mac and, for me, this has worked.  There may be other issues, but you should try this if you had similar problems to mine.

  • About opening file

    os:windows xp sp1
    import java.io.*;
    public class TestCommand{
        public static void main(String[] args){
            try{
                String str="happy new year";
                File f=File.createTempFile("sss",".txt");
                FileWriter writer=new FileWriter(f);
                writer.write(str);
                Runtime rt=Runtime.getRuntime();
                rt.exec("cmd /c start " + f.getAbsolutePath());
            }catch(Exception e){
                e.printStackTrace();
    }this program just opens a Notepad,but the content is nothing;
    how to correct the code so that the Notepad can show the content "happy new year"

    The file writer is neither flushed nor closed, so it's unlikely that anything will be written to the actual file.

  • Photoshop Elements 8 for Mac Question about Opening Files

    Hi. I somehow must have changed some settings in Photoshop Elements and I don't know how to change them back. Whenever I open an image, it opens at a size of 34.5% and the window is sized accordingly. When I change the view to Actual Pixels, the image gets bigger but the window stays the same size as before so I need to manually resize the window. Anyway, I don't know how I accidentally set these settings as the default. I'd like Photoshop Elements to open images at 100% and have the window size be the same. Does anyone know how I can fix it? Thanks.

    Elements will open an image at the largest size it can so that the whole image fits in the Active Image Area. It's the same as Fit on Screen view.
    You can make the Active Image Area larger by collapsing Panels and the Project Bin.
    To get your window to resize with your photo you need to choose a Preference. Go up to the Photoshop Elements menu (Edit menu for Windows users) and choose Preferences > General and click on the box next to Zoom Resizes Windows. Click OK.
    Hope that Helps!
    Rick
    essential-photoshop-elements.com

  • Where's the drop-down with "Recent places" in "Open File" dialogue?

    Hi,
    Until Mountain Lion, all "Open file" dialogue boxes included at the top a drop-down list with higher-level locations as welll as "recent places" - folders that were recently used to open files.
    In apps such as Smultron, this is hugely efficient and I would say the vast majority of the file I open, I access via that drop-down.
    Now, in apps that support iCloud, the UI of the "Open file" dialogue has changed significantly - with that drop-down now completely missing!!!
    I am actually really really upset about this feature being removed. Is there ANY way to bring it back? I waste so much time now in opening files, it's ridiculous.
    Thanks,
    Biranit

    Wierdly the only way I have found to bring this essential piece of the open file dialog box back is to disable icloud "Docuemetns & Data". Then hey presto the view controls are back on the top and the drop-down returns.
    ...but you don't have icloud documents any more
    Sounds like a wierd omission in Mountain Lion if you ask me.  I use that drop-down all the time...

  • Number of open files

    Is there any way I can read kernel data structure that contains the number of open files on the system? I know I can traverse the /proc tree or
    use the lsof program, but it creates too much overhead for my application.
    This parameter must be somewhere in the kernel - I can't beleive that Solaris reads all /proc tree every time I open a file :-)

    ...hi Alex. I may not have a complete answer to your question, but I did want to clarify one thing.
    It's not like the kernel every has to read the /proc file system tree because the /proc file system IS part of the kernel. It's simply a virtual file system that makes certain parts of the kernel's memory look like a bunch of files.
    So, except for the overhead associated with the system calls necessary to "read" through that space with your application, the performance bind is minimal.
    That brings us to the open file handles limit. Here's what I see in the "Solaris Internals" book.
    Systemwide limit for the number of files a process may open:
    rlim_fd_max - systemwide hard limit
    rlim_fd_cur - systemwide soft limit (or default, or current if you will)
    You can change the per-process limit (maybe bump up from the default to the hard limit) with limit(1) and ulimit(1) commands, or programatically with the function setrlimit(2).
    Further, if you are using the <stdio.h> interface to access a file, there is a limit on 32-bit systems of 256 because an 8-bit number is used to represent the file handle. On a 64-bit system the number is closer to 65000. (16-bit number in use)
    So that brings us to your real problem, which is how to test for the number of filehandles a process has open at this moment. I don't know that I have a good answer, but I presume that you've already ruled out the pfiles(1) command. This program (/usr/proc/bin/pfiles) gives good output and does a nice job of getting you really good information about open files.
    You may not want to execute it from your own process (otherwise you have the execution overhead and you still have to parse the output) but you may find the source code for it to be instructive.
    I haven't looked at it, but I would imagine that you could probably trace it to the source of information about how the kernel represents open file information.
    If you don't have Solaris source code, perhaps you know someone who has a license. I'll poke around and see if I can find any other useful information that is related to this question.
    ---v

  • Where are my "open file" tabs?

    Maybe these two things are not related, but my working page in DreamWeaver was suddenly spread out across the whole screen.  I fixed it by playing in the upper right-hand corner of the window and reducing its size, but now my "open file" tabs on top of the page are gone!  When I open more than one file, instead of getting tabs, they stack one on top of the other, like they did in the older versions of PhotoShop.  Help!!!  Thanks

    Thanks so much, Vinay.  I do get the tab back, but then the window is spread
    across the entire screen again, so 1/3 of it is hidden by the panels on the
    right.  Further, I have no bottom scroll bar, so I can't see the right side
    of the page without closing the panels.  Yikes.  What have I done?  I assume
    it's something simple, but these things can drive you nuts!
    Monelle

  • Unable to open file in emulator using Connector.open()

    This is my code (run on emulator) used to open a file located in the dir: C:\WTK25\appdb\DefaultColorPhone\filesystem\root1
    /**************************************CODE***********************************/
    FileConnection fileConn = (FileConnection)Connector.open("file:///root1/" fileName, Connector.READ);
    if(!fileConn.exists())
    System.out.println("File not found");
    else
    System.out.println("File opened");
    /**************************************CODE***********************************/
    I always get the o/p as "File Not Found" although there exists a .txt file in the directory /root1. What is to be done to open file on emulator? Please give suggestions...
    Message was edited by:
    Chintan.Kanal
    Message was edited by:
    Chintan.Kanal

    i m not sure but i hope this one is right 4 u......
    StringBuffer buff = new StringBuffer();
    InputStream istr = getClass().getResourceAsStream("/CLM.txt");
    for(int i=0 ; ; i++) {
    try {
    if(istr != null) {
    someByte = istr.read();
    if(someByte == -1) {
    buff.append("*");
    clmcontent = buff.toString();
    break;
    buff.append((char)someByte);
    } else {
    // do some necessary
    } catch(IOException ioe) {
    }

  • I have a question about DWG files.  Can I open them on my MacBook Pro with OX 10.9.5 system?What app do I need to view and print them?

    I have a question about DWG files.  What app will allow me to open DWG files to view them on my Macbook Pro?

    Perform this Google search: ".dwg files on mac." The results should provide answers for you.

Maybe you are looking for

  • How to save home WiFi Password in N8?

    I can connect to my home network with no problems but I have to enter the password each time I connect also when I have been inactive for a while it logs off and I need to input the password again. Is there a way for the phone to remember the passwor

  • Select options numeric value with asterisk in field screen.

    Hi Guys I searched this solution in SDN and SAP HELP but I found the solution, so I created this post. I have a select options: SELECT-OPTIONS: s_asnum  FOR asmd-asnum If I insert value 3000111 , then my internal table show 000000000003000111  (ok it

  • FM for material costs from KEPH

    Is there an FM which will bring back the material costs from KEPH based on a date parameter?

  • Issue in Invoice Output

    Hi All, I am in the process of preparing Functional Specs. Excise Invoice number should print in Invoice output. Kindly help me writing a logic. Regards, Raju

  • Mail Rule to SET OFF ALARM

    i am reading up on mac mail rules and see there is an option to make a SOUND. is there a way to get this to happen on my iPhone? i have an RSS feed set up in craigslist and i would like to be alerted when an incoming mail with a certain header term c