Have LR 2.3.  Downloaded over 600 pictures to the application.  Updated to LR 2.7, all my pictures were gone.  Did Windows 7 (64 bit) System restore in attempt to recover.  Now get a Runtime Error when I try to open LR 2.3!  Are my pictures lost?  I did a

Ant help appreciated!

I would try re-installing LR 2.7 and then looking for your catalog under File->Open Recent

Similar Messages

  • I get a runtime error when I try to open itunes, any help?

    I get a runtime error when I try to open itunes, any help?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Installing my updated CS4 on a new I Mac: "legacy Java SE 6 runtime" error when i try to open psd

    Bought the original Creative Suite package 1n 2004, installed on my new apple G5.  Upgraded in 2009 to CS4 and sometime installed on a 2nd computer.  I'm sure I registered each product.  I don't have the original disk's, but I have the serial number. I'm trying to install CS on my new I Mac.  It fails authorization in the download.  I went ahead and downloaded the 30 day trail like suggested.  I get the "legacy Java SE 6 runtime" error when i try to open psd.  After my first attempt failed and I read the help lessons on deactivation, I believe I have deactivated from the G5, but I'm still getting the same code when trying to open psd.

    Download and install: Java for OS X 2014-001 
    Reboot your Mac.
    Let me know how it goes.
    Gene

  • I get a Runtime error when i try to search within the iTunes store

    Please help! When in the iTunes store, I get a runtime error every time I try to use the search feature. I get a dialog box stating that Windows is searching for a solution, but then iTunes shuts down completely.

    I have the same error, but I think we will get no solution for this problem.
    You've get no answer here and the Apple support also doesn't send an answer how to solve the problem.
    BTW I have also Windows 7 and the newest version of iTunes 64-bit.
    Greetings Mike

  • I get an unknown error when I try to open an attachment in Outlook

    I have not been able to open an attachment in my Outlook mail account on my Droid Incredible since November 30th.  Before then, I had no problem.  I have uninstalled and reinstalled Adobe reader and when I check view, I get a message that says "unknown error."  I can forward the message to my Yahoo mail and open the attachment there.  Any suggestions?

    Hi, Rohil,
    I am not sure I know what the email client is.  I am using Yahoo Mail on my droid and my sub account is Outlook.
    Thanks,
    Trudy

  • When I download a disk image app I randomly get a checksum error when I try to open it, When I download a disk image app I randomly get a checksum error when I try to open it

    OSX freshly installed, HD checked for integrity, permissions corrected

    Try restarting your Modem and Router. It may not do anything, but it is usually simple to do and some have reported it fixed corrupted downloads.

  • I need to download Runtime Engine 7.1, but I get a 404 error when I try to download from the website.

    I need to download Runtime Engine 7.1, but I get a 404 error when I try to download from the website.

    Are you getting it from this link (assuming Windows): http://joule.ni.com/nidu/cds/view/p/id/703/lang/en? The download link on that page seems to work just fine.

  • Error when I try to open Firefox. Says Firefox is running in the background and cannot open. Suggests closing that window or restart system. This has happened several times recently. I reinstalled but am still getting the error. Any thoughts?

    I am getting an Error when I try to open Firefox that Says Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. This has happened several times recently. I deinstalld and reinstalled but am still getting the error. Any thoughts?

    This happens to me as well. However, I have a shortcut on my desktop as well as my quick start bar. When this has happened to me, I can usually log back in without restarting, by using the shortcut on the desktop rather than the usual quick start bar.
    I know this sounds weird, but it has worked for me about 80% of the time.

  • Runtime error when i try to execute this program

    I get a runtime error when i run this file using appletviewer. Please help me in getting out of this problem.
    The runtime errror is:
    C:\prashanth>appletviewer HelloMedia.java
    java.lang.NoClassDefFoundError: javax/media/ControllerListener
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:11
    1)
    at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:142)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
    at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:108)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
    at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:373)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
    at sun.applet.AppletPanel.run(AppletPanel.java:293)
    at java.lang.Thread.run(Thread.java:484)
    The code is :
    <applet code=HelloMedia.class width=500 height=400>
    <param name=FILE value="globe.avi">
    </applet>
    import java.applet.*;
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    public class HelloMedia extends Applet implements ControllerListener
    Player player;
    public void init()
    setLayout(new BorderLayout());
    String mediaFile = getParameter("FILE");
    try
    URL mediaURL = new URL(getDocumentBase(), mediaFile);
    player = Manager.createPlayer(mediaURL);
    catch(Exception e)
    System.err.println("Exception : " + e);
    player.addControllerListener(this);
    public synchronized void controllerUpdate(ControllerEvent event)
    if(event instanceof RealizeCompleteEvent)
    Component compVisual = player.getVisualComponent();
    Component compControl = player.getControlPanelComponent();
    if(compVisual != null)
    add("Center", compVisual);
    if(compControl != null)
    add("South", compControl);
    validate();
    public void start()
    player.start();
    public void stop()
    player.stop();
    player.deallocate();
    public void destroy()
    player.close();

    My classpath has the following value
    .;.;.;C:\PROGRA~1\JMF21~1.1\lib\sound.jar;C:\PROGRA~1\JMF21~1.1\lib\jmf.jar;C:\Program Files\CosmoSoftware\CosmoPlayer\npcosmop211.zip;%systemroot%\java\classes;.;
    Please help me out.
    Prashanth

  • I get a runtime error when attempting to search the store in Itunes.  I unistalled and reloaded. How can I fix this?

    I just began getting a runtime error when attempting to search the iTunes store.
    I uninstalled and reinstalled but, it's still happening.
    How can I fix this so I can start to buy music again?

    I have the same error, but I think we will get no solution for this problem.
    You've get no answer here and the Apple support also doesn't send an answer how to solve the problem.
    BTW I have also Windows 7 and the newest version of iTunes 64-bit.
    Greetings Mike

  • I get a 3914 error when I try and restore my iphone 4. my screen goes white and then all different colors. what should I do?

    i get a 3914 error when i try and restore my iphone 4. my screen goes white and all different colors  what should i do

    first try a different usb cable, remove all other usb devices, and try a different port in back on desktops if possible.  if no luck see these
    These errors typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.

  • Just downloaded Lion and now iMovie won't respond when I try to open it. Even tried deleting the program (since it was an older version) and bought it new from the app store, but still won't respond.

    Just downloaded Lion and now iMovie won't respond when I try to open it. Even tried deleting the program (since it was an older version) and bought it new from the app store, but still won't respond.

    Thanks for this mha007 - I can now open FF with a new profile. Can I copy my settings from the old profile or will this bring over the same problem, maybe a corrupt file. If it would bring the same problem, is there any way I can check which file is corrupt, apart from taking them over one by one?

  • WHEN TRYING TO DOWNLOAD THE LATEST VERSION OF ITUNES, I KEEP GETTING AN ERROR WHEN I TRY TO OPEN IT. MSVCR80.dll was not found

    AFTER DOWNLOADING THE LATEST VERSION OF ITUNES, I CAM GETTING AN ERROR WHEN I TRY TO OPEN IT. MSVCR80.DLL WAS NOT FOUND. UNABLE TO LOCATE COMPONENT. BEFORE I REMOVE THIS VERSION AND TRY TO RELOAD AGAIN, JUST WANTED TO BE SURE I WOULDN'T LOSE ALL 200 PURCHASED SONGS ON MY PC.

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99220)

  • HT1657 I'm getting a 42110 error when I try to play my rented movie.  I've downloaded the movies twice but it's saying they aren't downloaded !

    I'm getting a 42110 error when I try to play my rented movie from the istore.  I've downloaded the movies twice but it's saying they aren't downloaded !

    Perhaps try the "Error 3001," "-42110," or "5103" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • I get an 0x80092013 error when I try to access iTunes Store on my Windows 7 workstation

    I get an 0x80092013 error when I try to access iTunes Store on my Windows 7 workstation

    "You can add the PATH enviromental variable in Control Panel> System> Advanced System Settings.
    Alternatively, I was successful just copying the QTMovieWin.dll from c:\program files (x86)\common files\apple\apple application support\ INTO c:\program files (x86)/iTunes"
    See in: https://discussions.apple.com/thread/5252205?start=15&tstart=0

Maybe you are looking for

  • Acrobat XI Pro trial won't install under Yosemite

    I've downloaded a trial version of Acrobat XI and launched the installer but I get the spinning wheel after clicking on "Install" and it becomes unresponsive and I have to Force Quit. I don't get an error message. I've just noticed that Adobe Reader

  • Error in Custom generated IDOC message type for XIF

    Hi all, I had generated a custom  message type under interface function module crmxif_partner_save for enhanced fields. While generating from BDFG it popups inconsistency sap notes which is already in crm 2007. so i just ignaore them. idocs are gener

  • Dynamic URLs for the mx:HTTPService component

    I am looking to make the url property of an mx:HTTPService component dynamic. <mx:HTTPService id="srvDivision" url=" http://prodserver/prod/get_division.jsp" useProxy="false" method="POST"> </mx:HTTPService> I would just like to have an environment p

  • Finally. Someone PLEASE help me, really worried...

    I was driving home and shut off my MacBook. When I got home, I started it backup, but it's in a safemode type of thing like windows... the OS starts up and for a second looks normal then it changed to all those weird colors, and my menus arent even c

  • MemoryManager.cpp 437

    Hi All, I'm getting a "Labview crash in Memory Manager.cpp line 437" message. I followed the theads related to this error, but it seems to me I'm not in the situation there described. I'm not using Labview Real Time and I'm working with LV 8.6.1 prof