App hang

Hi all,
I hope someone can shed some light on to this - i'm more of a Microsoft techie but have a Mac - just as an end-user; no hating please .
Ever-so recently, within the last few days, apps have been hanging really badly. For example, i click Chrome and it bounces for 30 seconds, then stops. The same happens to pretty much all my apps, including the standard Apple apps like Mail, Safari and iTunes.
Really worrying now, i just heard the loudest possible BEEP on here... well, it wasn't a beep but was like the horn from a 16 wheeled truck - seriously!
Has anyone experienced anything like this? I could re-install, but it's a Mac i shouldn't need to!
I know i've not given much info on this, but not sure what i'd need to provide, can someone let me know?
Thanks for any help i may receive!
Note: i upgraded from Tiger to Snow Leopard about 8 months ago.
Christian

While you are running your normal app load have Activity Monitor open (Applications - Utilities - Activity Monitor) and see how much Free RAM you have. While you are there also check to see if there are any apps taking a lot of %CPU. Please report back the amount of FREE RAM, if it's about 500 MB then the issue is insufficient RAM.
If everything seems normal then try starting in Safe Mode to clear some caches.
http://support.apple.com/kb/HT1455
And if those do not help you can do a SMC reset.
_SMC RESET_
• Shut down the computer.
• Unplug the computer's power cord and all peripherals.
• Press and hold the power button for 5 seconds.
• Release the power button.
• Attach the computers power cable.
• Press the power button to turn on the computer.
_PRAM RESET_
• Shut down the computer.
• Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
• Turn on the computer.
• Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
• Hold the keys down until the computer restarts and you hear the startup sound for the second time.
Release the keys.
Finally if this still doesn't work then create a Test Account and leave it pristine, don't add any applications or change any settings on this account. Then log into the account, if the account is stable that indicates a software issue in your user account. If the problem persists it's a global issue to your system.

Similar Messages

  • Java Swing App hangs on socket loop

    H}ello everyone i've run into a bit of a snag with my application, its a simple chat bot right now but will evolve into a chat client soon. I can't do that however since my app hangs when i look through the readLine() function to receive data and i dont know how to fix this error. The code is below.
    The doSocket() function is where the while loop is if anyone can help me with this i'd be very greatful.
    * GuiFrame.java
    * Created on August 13, 2008, 9:36 PM
    import java.net.*;
    import java.io.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    * @author  brian
    public class GuiFrame extends javax.swing.JFrame {
        /** Creates new form GuiFrame */
        public GuiFrame() {
            initComponents();
        Socket client_sock = null;
        PrintWriter out = null;
        BufferedReader in = null;
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                         
        private void initComponents() {
            convertButton = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Test Bot");
            convertButton.setText("Connect");
            convertButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    convertButtonActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(41, 41, 41)
                    .addComponent(convertButton)
                    .addContainerGap(42, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(22, 22, 22)
                    .addComponent(convertButton)
                    .addContainerGap(26, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
    private void convertButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
        if (convertButton.getText()=="Connect") {
                    String old;
                    try {
                        client_sock = new Socket("www.spinchat.com", 3001);
                        out = new PrintWriter(client_sock.getOutputStream(), true);
                        in = new BufferedReader(new InputStreamReader(client_sock.getInputStream()));
                    } catch (UnknownHostException e) {
                    } catch (IOException e) {
                try {
                    doSocket();
                } catch (IOException ex) {
                    Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        } else if (convertButton.getText()=="Disconnect") {
            out.println("e");
            out.close();
            try {
                client_sock.close();
                in.close();
            } catch (IOException ex) {
                Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
    private void doSocket() throws IOException {
        BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
        String userInput;
        String old;
            while ((userInput = stdIn.readLine()) != null) {
                old = userInput;
                if (userInput != old) {
                    String proto = userInput.substring(0, 0);
                    if (proto == ":") {
                        out.println("{2");
                        out.println("BI'm a bot.");
                        out.println("aNICKHERE");
                        out.println("bPASSHERE");
                    } else if (proto == "a") {
                        convertButton.setText("Disconnect");
                        out.println("JoinCHannel");
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new GuiFrame().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton convertButton;
        // End of variables declaration                  
    }Edited by: briansykes on Aug 13, 2008 9:55 PM
    Edited by: briansykes on Aug 13, 2008 9:56 PM

    >
    ..i've run into a bit of a snag with my application, its a simple chat bot right now but will evolve into a chat client soon. >Is this intended as a GUId app? If so, I would stick to using a GUI for input, rather than reading from the command line (which when I run it, is the DOS window that jumps up in the BG - quite counterintuitive). On the other hand, if it is intended as a non-GUId or headless app., it might be better to avoid any use of JComponents at all.
    My edits stick to using a GUI.
    Other notes:
    - String comparison should be done as
    s1.equals(s2)..rather than..
    s1 == s2- Never [swallow exceptions|http://pscode.org/javafaq.html#stacktrace] in code that does not work.
    - Some basic debugging skills are well called for here, to find where the program is getting stuck. When in doubt, print out!
    - What made you think that
    a) a test of equality on a member against which you had just set the value to the comparator, would logically lead to 'false'?
    old = userInput;
    if (userInput != old) ..b) A substring from indices '0 thru 0' would provide 1 character?
    String proto = userInput.substring(0, 0);
    if (proto == ":") ..
    >
    ..if anyone can help me with this i'd be very greatful.>Gratitude is often best expressed through the offering of [Duke Stars|http://wikis.sun.com/display/SunForums/Duke+Stars+Program+Overview].
    * GuiFrame.java
    * Created on August 13, 2008, 9:36 PM
    import java.net.*;
    import java.io.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.*;
    * @author  brian
    public class GuiFrame extends JFrame {
        /** Creates new form GuiFrame */
        public GuiFrame() {
            initComponents();
        Socket client_sock = null;
        PrintWriter out = null;
        BufferedReader in = null;
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            convertButton = new JButton();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            setTitle("Test Bot");
            convertButton.setText("Connect");
            convertButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    convertButtonActionPerformed(evt);
            GroupLayout layout = new GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(41, 41, 41)
                    .addComponent(convertButton)
                    .addContainerGap(42, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(22, 22, 22)
                    .addComponent(convertButton)
                    .addContainerGap(26, Short.MAX_VALUE))
            pack();
            setLocationByPlatform(true);
        }// </editor-fold>
    private void convertButtonActionPerformed(java.awt.event.ActionEvent evt) {
        if (convertButton.getText()=="Connect") {
                    String old;
                    try {
                        System.out.println( "Connect start.." );
                        client_sock = new Socket("www.spinchat.com", 3001);
                        out = new PrintWriter(client_sock.getOutputStream(), true);
                        in = new BufferedReader(new InputStreamReader(client_sock.getInputStream()));
                        System.out.println( "Connect end.." );
                    } catch (UnknownHostException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                try {
                    doSocket();
                } catch (IOException ex) {
                    Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        } else if (convertButton.getText()=="Disconnect") {
            out.println("e");
            out.close();
            try {
                client_sock.close();
                in.close();
            } catch (IOException ex) {
                Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        private void doSocket() throws IOException {
            System.out.println( "doSocket start.." );
            String userInput;
            String old;
            userInput = JOptionPane.showInputDialog(this, "Send..");
            while(userInput!=null && userInput.trim().length()>0) {
                System.out.println( "doSocket loop 1.." );
                String proto = userInput.substring(0, 1);
                System.out.println("proto: '" + proto + "'");
                if (proto.equals(":")) {
                    System.out.println("Sending data..");
                    out.println("{2");
                    out.println("BI'm a bot.");
                    out.println("aNICKHERE");
                    out.println("bPASSHERE");
                } else if (proto.equals("a")) {
                    convertButton.setText("Disconnect");
                    out.println("JoinCHannel");
                userInput = JOptionPane.showInputDialog(this, "Send..");
            System.out.println( "doSocket end.." );
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new GuiFrame().setVisible(true);
        // Variables declaration - do not modify
        private JButton convertButton;
        // End of variables declaration
    }

  • 10.6 -- All Office 2008 apps hang at splash screen. FontCache Tool runaway

    Did an upgrade of 10.5 to 10.6. Nearly everything works fine. Can't launch Office 2008. All apps hang at their splash screen; usually at Optimizing Font Menu Performance.
    Once an app is opened, in Activity viewer you'll find a process called FontCache Tool using >90% of the CPU (on my Core Duo MBP at least, YMMV). I suppose it's saying a lot about 10.6 that the computer is completely usable with that runaway process. Even after forcing the office app(s) to quit, Font Cache Tool stays running until it's killed manually.
    I have yet to find out if FontCache Tool is an Apple or MS process. I think it's microsoft.
    This happens under multiple users.
    This happens after reinstalling Office.
    This was an Office 2008 upgrade from Office 2004.
    After reinstall, and installing Rosetta, office 2004 will run, but office 2008 will not.
    Office 2008 is 12.2.1.
    I am running FontAgent Pro for font management, and so font book sees certain activated fonts as duplicates. (Validate fonts shows duplicate warnings but no errors). FontAgent Pro 4.0.3 is listed as Snow Leopard compatible. So is Office 2008.
    I have yet to do a clean SL install, which I'm guessing will fix it, but I'm curious if there is a sub-sledgehammer approach, or if I am the only person with this issue.
    Other probably irrelevant facts include that the computer is bound to both Active Directory and OS X OpenDirectory servers. Open Directory is running on Leopard 10.5 Server. It does have some managed preferences, including those for Office (e.g. to set default to .doc rather than .docx) but the situation persists even after removing those managed preferences.
    Normally really specific problems are easy to isolate and solve, but I'm at a loss.
    Any help appreciated
    keppie

    Hey i think i figured it out.
    Had the same prob. 10.6 12.2.1 entourage hanging.
    Renamed FCT, instantly prompted that a font was corrupt. Removed the corrupt Font: KufiStandardGK.ttf << this just happened to be my one corrupt font.
    A little troubleshooting i did leading up to this, I read your post and my situation was the same. I use Linotype X to manage fonts. I disabled all but the minimum fonts (i moved them into a folder font_trouble in the same folder)
    I also deleted every office pref/plist setting i thought relevant to startup which triggered the microsoft setup assistant (watched via the console app) and it ran through its check and then immediately the fontcachetool started and went awol on cpu time. Once i killed it--during the starting up of word and entourage... timing may be unrelated but i did them at nearly the same time.
    Ps. Your post was extremely well written and I apologize for my stream of consciousness, less than stelllar response... hope this helps if not feel free to ping me for more details on what I did...
    Good Luck.. All my office apps are running normally now.

  • Camera App Hangs On Startup

    Hi,
    the camera app hangs when I start it up. The shutter doesn't open (I can switch to the camera roll and view photos though). I tried restore twice, doesn't help. Sounds like a hardware issue to me!?
    Anyone else experienced something like this?
    Chris

    I forgot to post back with the results of my trip to the Apple Store. The tech restarted the phone with boot diagnostics which reported no camera present. His first thought was that the camera cable might have wiggled loose. He popped the cover, reseated the camera cable, and rebooted. Same result: no camera present. He deemed it faulty hardware and replaced the phone. I'm not sure how to access the boot diagnostics (Google probably knows), but it might be worth seeing if the camera hardware is detected. Hope this helps.

  • App hang up when opening cc files?

    Are there any others having issues with opening InDesign CC files where the app hangs up and you have to force quite and restart it? This is happening way too often for me and I'm suspicious that it might have to do with Suitcase. Any help would be greatly appreciated. I've already had to force quit 3 times today. Thanks!

    Sorry if this is posted in the wrong forum
    Office questions should be posted on Microsoft's own forums for their Mac products:  http://www.officeformac.com/productforums

  • Adobe apps hang after upgrade to Yosemite

    Adobe apps hang after upgrade to Yosemite - requires force quit and reopen...any advice?

    thanks, Kurt...we'll see...I upgraded to Yosemite so I could load the newer Adobe CC anyway - I'll upgrade the suite to the cloud and see what happens

  • App hangs on tab click if connection in use

    If tab one is using connection1 and running a script and i click on tab2 which is also connected using connection1, the app hangs until tab1 finishes the script it was running and connection1 is again free.
    Shouldnt each tab really open a new connection with the same parameters as the connection from the connections list? If not then it should at least not let you select any tabs using connection1 while connection1 is busy so that you can continue working on tabs with other connections.
    I am using 1.5.0.53 on windowsxp.
    Thanks

    By default, all worksheets use the same single threaded connection. To get a worksheet with an unshared connection, use ctrl-shift-N

  • App Hangs in 3 consecutive days

    Hi all,
    11.2.0.1
    Aix 6.1
    Our database & app hangs for the first time, 3 consecutive days (Aug 11,12,13)  during run of batch jobs at 12AM.
    The batch operator said the batch job is deleting a table with only less than 1000 rows but was not able to lock the table as there lots of updates queues from lots of client app.
    I check the alert log for the said time period and this is the output. I saw similar occurences at 1AM
    Tue Aug 13 01:20:45 2013
    Clearing standby activation ID 2855092487 (0xaa2d4107)
    The primary database controlfile was created using the
    'MAXLOGFILES 16' clause.
    There is space for up to 10 standby redo logfiles
    Use the following SQL commands on the standby database to create
    standby redo logfiles that match the primary database:
    ALTER DATABASE ADD STANDBY LOGFILE 'srl1.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl2.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl3.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl4.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl5.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl6.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl7.f' SIZE 262144000;
    Tue Aug 13 02:00:00 2013
    Closing scheduler window
    Closing Resource Manager plan via scheduler window
    Clearing Resource Manager plan via parameter
    Tue Aug 13 04:36:07 2013
    WARNING: Heavy swapping observed on system in last 5 mins.
    pct of memory swapped in [9.53%] pct of memory swapped out [23.33%].
    Please make sure there is no memory pressure and the SGA and PGA
    are configured correctly. Look at DBRM trace file for more details.
    Tue Aug 13 05:07:14 2013
    Thread 1 cannot allocate new log, sequence 49033
    Private strand flush not complete
    AlertSunday Aug 11
    https://app.box.com/s/6ut7uk0o5y6tg2sjfzvn
    AlertMonday Aug 12
    https://app.box.com/s/gafa2d1ngn7hpen6tfky
    AlertTuesday Aug 13
    https://app.box.com/s/o5v5gtul1mr3yra6vbgj
    Do you have any idea what causes tha hang? Its weird because these did not happened before.
    Please help...
    Thanks a lot,
    zxy

    Thanks,
    Does these ASH, & AWR reports shows anything?
    ASH
    https://app.box.com/s/bmuafe2y39mzo036bbij
    https://app.box.com/s/jdfv3uauwhp7tttvqlig
    https://app.box.com/s/7r0sej0r77n3jay7n1fd
    AWR
    https://app.box.com/s/fdyx0rare2tskd291f1w
    https://app.box.com/s/0pd4u7kzt0p10rhgnivq
    https://app.box.com/s/sjotdxe57pssjitabrj2
    Thanks,

  • Yosemite mail.app hang

    I just upgraded to Yosemite and have found that Mail.app hangs. I would open it and 10 or 15 seconds later it would hang. I would get a spinning beach ball and Mail was listed as not responding in Activity Monitor.
    I was able to narrow down the problem to one account. The account works in Thunderbird on the same Mac, so I don't think the account is a problem.
    Any ideas how and can trouble shoot this, or otherwise diagnose and fix the problem?

    Hi railmeat,
    Sounds like you may be experiencing an issue with your Mail app. I would like to recommend that you use this article as a reference for troubleshooting this issue further:
     OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Apps hanging up in iTunes

    I have several iOS apps that seem to hang up now when downloading the update in iTunes. Each update downloads and then hangs at the last stage when it is "processing file".  Once 3 apps hang, the other apps waiting to download stop downloading. Anyone else experiencing this?  Any ideas?

    Is your last screen on your iPod Touch 3G supposed be page 12? It appears that you may have a lot of apps and the number of display screen/pages is above 11. iPod Touch 3G can only display up to 11 pages of apps. Your 12th page is shown in iTunes however dimmed.
    Let me know if I am correct on your assessment. If not then we have something else at hand.
    Axel F.

  • Mail.app hang due to postgresql permissions?

    I did a time machine restore, and all is fine except I can't use mail.app.  The app hangs before the GUI loads. The console is reporting this (over and over again):
    org.postgresql.postgres: 2011-07-21 08:40:56 EDT FATAL:  could not create log file "/Library/Logs/PostgreSQL.log": Permission denied
    com.apple.launchd: (org.postgresql.postgres[912]) Exited with code: 1
    So it seems mail.app can't use its database, due to a change in user-group permissions?  How can I repair this without resorting to a clean reinstall of Lion?

    Hi,
    I tried to bind my OD Lion server with the Directory Utility to OD itself so to the local database. Bad idea and the only way getting server up and running again was to restore TIme Machine Backup.
    After the restore Profile Manager did not work anymore (Error reading config). With the two lines mentioned here in the threat I was able to fix this problem:
    sudo touch /Library/Logs/PostgreSQL.log
    sudo chown _postgres:admin /Library/Logs/PostgreSQL.log
    I don't know what I would have done without that. I have to say I'm using Mac only for a few months now but problems with Windows machines are really nothing compared with what Mac OS is causing. It's a real disapointment for such an amount of money. Maybe Windows does not look that nice and fancy but behind the scenses there is at least good engeneering. Sorry for that lines. They don't belong here I'm just quite upset about this OS. Time Machine has saved me now two times from a absolute disaster by executing operating system tasks.

  • Skype n many other apps hang on iPhone 5.

    Hi
    With the new iPhone I am facing issues with many apps such as Skype. The apps hang in particular stage and if takes killing the app and restart again which makes the experience very annoying.

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    If no joy... Perform a Restore...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    Restoring  >  http://support.apple.com/kb/HT1414
    Make sure you have the Latest Version of iTunes (v11.1.5) Installed on your computer
    iTunes free download from www.itunes.com/download

  • Mail app hangs on ios5 and gmail account

    The Mail app hangs several times per day. I have one gmail account. The diag. files says something like "com.apple.mobilemail failed to resume in time" or "Power assertion timeout for MailPendingChanges"

    This connectivity issue between my Apple Mail through CLEAR as ISP to Godaddy's pop.secureserver.net is just getting weirder. Now my 9 boxes spin out (when upload is testing at .07 mbps and also at .54 mbps) but partner's 4 emails on iMac using same settings through same network is fine...was glitched a while ago too though. Then partner's emails all do same thing, and hers and my Gmail accounts check fine. SO, Helllloooo Godaddy, if Gmail checks fine but your pop.secureserver.net does not, maybe it IS a problem on your end? Of course, getting Godaddy to ADMIT THEY HAVE A PROBLEM would be a miracle.
    Still zero reply or help from either Godaddy or Clear, no resolution from either, still pitching blame at each other.

  • Running Graphic 6.0 sometime make app. hang

    I have a app. using many graphics. They worked well with Graphic
    4.5. But after ungraded to Graphic 6.0, sometimes I load a
    graphic (called from form), a msg say that "Oracle graphic cause
    an illigal operation..."(with 2 buttons Retry and Ignore) and my
    app hang! I guess the reason as lack of memory.
    My workstation : PII 333, 32M Ram, so much HDD.
    Anyone know? pls tell me.
    Thanks.
    null

    It seems the App Store doesn't offer iPhoto 9.0 for download.  I presume purchasing iPhoto '11 (v.9.4.2) for $14.99 isn't going to work...because I know the most advanced version my system can handle is 9.2.3.  I'm secretly hoping that if I go for the upgrade to 9.4.2, it'll take me as far as 9.2.3 and just leave me running that version.  But, my hunch is the more likely scenario will be that the upgrade/installation will not be completed/fail.
    Can you please just confirm that my hunch (as opposed to my "hope") is correct?
    Thanks!

  • ITunes U app hangs on the  new iPad?

    The iTunes app hangs ,stops working-nothing can be done, on the new iPad. I have to shut it done and reboot it. Then it works until the next time. It happens continually.

    There's a forum specifically for the iTunes U app here:
    https://discussions.apple.com/community/app_store/itunes_u_for_ios
    You'll be more likely to get useful suggestions there, I think. This forum is for those who are creating and managing iTunes U sites.
    Regards.

  • MacBook Pro 9,1 OSX 10.8.2 Mail app hangs

    My mail app hangs when trying to load.
    Just got my second MBP not using migration assistant, starting over from scratch.
    Is there a way  I can reinstall just mail?
    Thanks

    Found post by DeMinister, 
    disconnected from internet, spinning beachball went away
    deleted account settings & started over.
    It worked!
    Thanks much!!!!!!!  

Maybe you are looking for

  • Save PDF form to SharePoint

    Hello Experts, This is my 1st question in this forum (& regarding Acrobat as well). Here's the scenario; We have SharePoint 2013 environment which is used for lot of things around documents, workflows, projects etc. In one of the projects, we have a

  • IPhoto 6 keeps losing/dropping my photos from the thumbnail screen

    I have iPhoto 6.0.6 (322), and I store my photos on a LaCie external hard drive (Mac OS Extended format). Recently, all photos taken since 2008 keep disappearing from iPhoto. The photos still exist in the iPhoto library folder, and I've followed vari

  • Bookmarking Site on iTunes Music Store

    My university has just partnered with Apple iTunesU. I was wondering if there was a way to bookmark my university's website on the music store. I tried creating a new playlist and that didn't work. I also tried to drag my university's name to the lib

  • Database or I/O error

    Hi everyone. I recently have a problem with logging into my account in skype. It was working fine for me for last 2 yrs. However, when I logging now I've got error message saying either "THERE IS A DATABASE ERROR" or "I/O Error, please login later".

  • Error displayed

    Hello Experts, I get the follwoing error, please help. E:The data object "TRAN_STRUCTURE" has no component called "AG_CGEND1", but there is a component called "/BIC/AG_CGEND1". And this I get when I am trying to write a routine in update rule of an O