Possible to keep contents of Java Collection after closing program??

Hiya
Is there any classes in the java library that allows you to save contents of a collection such as HashMap/ArrayList etc into a so called offline collection so that next time when start up of program the contents wont disappear? Because i know when you close a program, the contents of the collections is obviously discarded and resetted for next start up of the program.
Or is there a way to do that?
In general i want to keep contents that are in a java collection during its use in a program session so that next time starting the program up again the collection content is still there.
Thanks.

Also, remember when u serialize a class every element of it should be serializable .What happens if the class elements not all are serializable? Does that mean i cant serialise that class?
*all i want is to serialise a class which has a HashMap. The hashmap is the object which i want to serialise.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • MissingResourceException when I iterator a collection after closing the PM

    I retrieve a collection, call pm.retrieveAll on it, and then close the PM.
    When I try to iterator over the collection, I get a
    MissingResourceException. I can't figure out why I'm getting the exception,
    if I do a retrieveAll it should retrieve all the fields of all the objects
    in the collection. It's as if there is a rule "Thou shall not iterator over
    a collection after closing the PM". Is this true?
    java.util.MissingResourceException: Can't find resource for bundle
    java.util.PropertyResourceBundle, key resultlist-closed
    at java.util.ResourceBundle.getObject(ResourceBundle.java:314)
    at java.util.ResourceBundle.getString(ResourceBundle.java:274)
    at serp.util.Localizer.get(Localizer.java:270)
    at serp.util.Localizer.get(Localizer.java:121)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.checkClosed(LazyResult
    List.java:349)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.listIterator(LazyResul
    tList.java:403)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.iterator(LazyResultLis
    t.java:397)
    at
    com.verideon.siteguard.services.SchedulerService.getMonitorsToRun(SchedulerS
    ervice.java:103)
    at
    com.verideon.siteguard.services.SchedulerService.schedule(SchedulerService.j
    ava:59)
    at
    com.verideon.siteguard.web.util.TimerServlet$scheduleTask.run(TimerServlet.j
    ava:84)
    at java.util.TimerThread.mainLoop(Timer.java:432)
    at java.util.TimerThread.run(Timer.java:382)
    Here is my code:
    private Collection getMonitorsToRun() {
    Collection c = new LinkedList();
    PersistenceManager pm = null;
    try {
    pm = JDOFactory.getPersistenceManager();
    Extent extent = pm.getExtent(Monitor.class, true);
    String filter = "nextDate <= now";
    Query q = pm.newQuery(extent, filter);
    q.declareParameters("java.util.Date now");
    q.setOrdering("nextDate ascending");
    Hashtable p = new Hashtable();
    p.put("now", new Date());
    c = (Collection) q.executeWithMap(p);
    pm.retrieveAll(c);
    } catch (JDOException e) {
    log.warn("Received JDO Exception while retrieving Monitors " + e);
    } finally {
    pm.close();
    log.debug("Retrieved " + c.size() + " Monitors ready to be ran.");
    Iterator i = c.iterator();
    while (i.hasNext()) {
    Monitor m = (Monitor) i.next();
    log.debug("m id = " + m.getId());
    return c;

    It appears to be a query in which case, yes, a Query result Collection cannot be iterated over.
    The simple way to bypass this is to transfer the results to a non-closing Collection.
    Collection results = (Collection) q.execute ();
    results = new LinkedList (results);
    pm.retrieveAll (results);
    pm.close ();
    On Thu, 27 Feb 2003 14:49:17 +0100, Michael Mattox wrote:
    I retrieve a collection, call pm.retrieveAll on it, and then close the PM.
    When I try to iterator over the collection, I get a
    MissingResourceException. I can't figure out why I'm getting the exception,
    if I do a retrieveAll it should retrieve all the fields of all the objects
    in the collection. It's as if there is a rule "Thou shall not iterator over
    a collection after closing the PM". Is this true?
    java.util.MissingResourceException: Can't find resource for bundle
    java.util.PropertyResourceBundle, key resultlist-closed
    at java.util.ResourceBundle.getObject(ResourceBundle.java:314)
    at java.util.ResourceBundle.getString(ResourceBundle.java:274)
    at serp.util.Localizer.get(Localizer.java:270)
    at serp.util.Localizer.get(Localizer.java:121)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.checkClosed(LazyResult
    List.java:349)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.listIterator(LazyResul
    tList.java:403)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.iterator(LazyResultLis
    t.java:397)
    at
    com.verideon.siteguard.services.SchedulerService.getMonitorsToRun(SchedulerS
    ervice.java:103)
    at
    com.verideon.siteguard.services.SchedulerService.schedule(SchedulerService.j
    ava:59)
    at
    com.verideon.siteguard.web.util.TimerServlet$scheduleTask.run(TimerServlet.j
    ava:84)
    at java.util.TimerThread.mainLoop(Timer.java:432)
    at java.util.TimerThread.run(Timer.java:382)
    Here is my code:
    private Collection getMonitorsToRun() {
    Collection c = new LinkedList();
    PersistenceManager pm = null;
    try {
    pm = JDOFactory.getPersistenceManager();
    Extent extent = pm.getExtent(Monitor.class, true);
    String filter = "nextDate <= now";
    Query q = pm.newQuery(extent, filter);
    q.declareParameters("java.util.Date now");
    q.setOrdering("nextDate ascending");
    Hashtable p = new Hashtable();
    p.put("now", new Date());
    c = (Collection) q.executeWithMap(p);
    pm.retrieveAll(c);
    } catch (JDOException e) {
    log.warn("Received JDO Exception while retrieving Monitors " + e);
    } finally {
    pm.close();
    log.debug("Retrieved " + c.size() + " Monitors ready to be ran.");
    Iterator i = c.iterator();
    while (i.hasNext()) {
    Monitor m = (Monitor) i.next();
    log.debug("m id = " + m.getId());
    return c;
    Stephen Kim
    [email protected]
    SolarMetric, Inc.
    http://www.solarmetric.com

  • Workstation has to keep re-installing Java everytime after using it?

    The workstation is running XP & she shuts it down every night. For whatever reason, she uses a web based program that uses Java, then after she shuts it down for the night, she has to re-install Java to use the program again....any suggestions?

    I don't understand any of these replies. How do I get Java to run for Pogo.com? I had no problems a week ago. I do not have the red icon. I am not a programer so keep it simple. I am a 59 year old speech therapist.
    [email protected] HELLLLLLP

  • Why does Firefox keep me logged into websites after closing and reopening the browser?

    As of today, Firefox has been behaving differently. Namely, when I close Firefox and reopen, I am still logged in to email and other sites. I have all of my privacy settings checked, such as clear history, offline data, form history, etc etc so that they all will be deleted upon closing but this has no effect. Can someone provide insight as to why this is happening and how I can correct it? Before today, after closing and reopening the browser I was required to log in to any sites requiring UN and PW.
    I have rechecked all history deletion options to make sure all the appropriate ones were selected. Yesterday, I noticed inbox.com and a program called 24x7 Help were installed on the computer, without my knowledge. I promptly uninstalled them,but I'm not sure if they could somehow be responsible for the odd behavior.

    Such a behavior indicates that you keep the cookie(s) that verify that you are logged on to a web server.
    Are you using session restore to open those tabs automatically?
    * Tools > Options > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"
    You can set the <b>browser.sessionstore.privacy_level</b> pref to 2 (never) or 1 (non-HTTPS, default in Firefox 3 versions) on the <b>about:config</b> page to disable saving cookies via session restore.
    You can change the browser.sessionstore.privacy_level_deferred pref that is used when you do not reopen the previous session automatically via "Show my windows and tabs from last time".
    * http://kb.mozillazine.org/browser.sessionstore.privacy_level
    *http://kb.mozillazine.org/about:config

  • Firefox stays active in memory after closing program

    After closing Firefox and restarting the progam after a while, a popup message appears saying Firefox is allready active (message in dutch) and Firefox does not (re)start. It is not an active window however, since I closed it down...
    When I press alt-ctr-del, Firefox can be found as "active"in the processes-tab.
    To re-start Firefox I now manually must click on "end process" and now Firefox starts without problem.
    This happens on each occasion after closing the program.
    Anyone know how to solve it? Help appreciated!

    Please read this article:
    http://support.mozilla.com/pt-BR/kb/Firefox+hangs#Hang_at_exit

  • Best possible way to achieve HashMap (Java Collection) in ABAP

    Hi
    I need to store name-value pair at runtime, where name act as a key (something what HashMap provides in Java). What is the best possible approach to do this?
    I can create a Structure (having two fields name and value) and then a Table Type on this structure to store multiple values, but how to make it unique?
    Please help.
    Regards,
    Arpit.

    Hi,
    In ABAP you can define table with KEY as unique.
    You also have different types of table in SAP. (Standard, Hashed, Sorted).
    You can refer to the link for details.
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/fc/eb36c8358411d1829f0000e829fbfe/frameset.htm
    Regards,
    Saurabh

  • Firefox keeps running in the backround after closing it, it just lingers there, and when I try to restart firefox, it says that I have to close the current one or restart my system to clear the last firefox. what can I do, thanks...

    After the last update, my IBM Clone computer does not close the session of firefox when clicking on "close" it clears the screen back to the desktop but firefox continues to hang there in the backround and will not allow another session of firefox to start until the first session is closed. The only way to reconnect is to do a restart on my system, and then the old firefox session is closed and the new session will start.

    Must be the "hang at exit" problem. <br /><br />
    #Stop the Firefox process:
    #*[http://kb.mozillazine.org/Kill_application Mozillazine - Kill application]
    #*Windows 7 users click [http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576 here]
    #Why Firefox may hang:
    #*[http://support.mozilla.com/en-US/kb/Firefox+hangs Firefox hangs] (see Hang at exit)
    #*[http://kb.mozillazine.org/Firefox_hangs Firefox hangs (Mozillazine)] (see Hang at exit and Closing Firefox properly)
    #*[https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding Firefox is already running but is not responding]
    #Use Firefox Safe Mode to find a problem with an Extension or Plugin:
    #*Don't check anything when entering Safe Mode, just continue
    #*If the problem does not occur in Safe Mode it is probably and Extension or Plugin causing the problem
    #*See:
    #**[[Safe Mode]] and [http://kb.mozillazine.org/Safe_Mode Safe Mode (Mozillazine)]
    #**[http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes Troubleshooting extensions and themes]
    #**[http://support.mozilla.com/en-US/kb/Troubleshooting+plugins Troubleshooting plugins]
    #**[http://support.mozilla.com/en-US/kb/Basic+Troubleshooting Basic Troubleshooting]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Adobe processes keep running after closing program!

    Hello,
    I have this issue with Adobe Premiere Pro, After Effects, Media Encoder and Audition but not with Photoshop, Dreamweaver etc.
    Everytime I close one of those programs the respective process keeps running in the background.
    I can't restart the program until I go to the task manager and kill the process (AfterFX.exe, Adobe Premiere Pro.exe, pproheadless.exe)
    I already tried a clean uninstall with the cleaner tool and reinstall but the problem remains.
    I encountered this problem few months ago after a longer break from Adobe.
    Never had any problems before.
    I cloned my complete system with Acronis on a new SSD few months ago..
    can't remember anything else with much impact which could have triggered this.
    System: Win7 x64
    Software: Adobe CC

    I found the Solution (for me at least)
    It seems to be a driver problem with graphic cards from nvidia's 600 series.
    I have installed the oldest available driver for my GTX 680 and everything works fine now (some newer drivers might also work)
    I'm gonna write a e-mail to the Nvidia support and tell them what happened, pls do the same if you found the solution due to this post and
    upcoming drivers gonna work well for us again.
    best regards

  • MBP (Christmas '09) 13inch keeps getting prompted to restart after closing a program; mainly Safari

      Hello all,
          I got my MBP 13 inch Christmas, 2009 and loved it.  Everything was immaculate up until about 5 mos. ago.  Many wierd things have been occurring.  For example, I have had MULTIPLE instances where I would be on Safari v10.6.8 and would scroll down or click a link and would either first see the spinning wheel after which it immediately shut down, or would notice that it was taking a while to do whatever, and then shut down (Safari, that is).  I would re-open Safari and within the same time that it took to first shut itself off, it would do it again. and again. and again.  I would then usually restart the system, after which everything was fine.  On other multiple occurrances, when I would close down a program (mainly Safari... same version), I would get back to the desktop, and would, within seconds, see the "Tinted Curtain" as I call it, where the screen goes almost fully dark from top to bottom, mandating that it needed to restart, whereupon after restarting, I would get the disclaimer saying "Your computer shut down because of a problem.  Would you like to report it",Da Da Da...  I have always kept up with all updates to programs (that I use) when prompted to do so by the 'software update' thing (mainly Safari, ITunes, and Security updates), and have never downloaded anything wierd, or not authorized by Apple Co.  If anyone has any info or suggestions as to what may be going on or how to fix this issue, I would greatly appreciate it. 
                   Thanks a ton.  -Longstride

      Hello all,
          I got my MBP 13 inch Christmas, 2009 and loved it.  Everything was immaculate up until about 5 mos. ago.  Many wierd things have been occurring.  For example, I have had MULTIPLE instances where I would be on Safari v10.6.8 and would scroll down or click a link and would either first see the spinning wheel after which it immediately shut down, or would notice that it was taking a while to do whatever, and then shut down (Safari, that is).  I would re-open Safari and within the same time that it took to first shut itself off, it would do it again. and again. and again.  I would then usually restart the system, after which everything was fine.  On other multiple occurrances, when I would close down a program (mainly Safari... same version), I would get back to the desktop, and would, within seconds, see the "Tinted Curtain" as I call it, where the screen goes almost fully dark from top to bottom, mandating that it needed to restart, whereupon after restarting, I would get the disclaimer saying "Your computer shut down because of a problem.  Would you like to report it",Da Da Da...  I have always kept up with all updates to programs (that I use) when prompted to do so by the 'software update' thing (mainly Safari, ITunes, and Security updates), and have never downloaded anything wierd, or not authorized by Apple Co.  If anyone has any info or suggestions as to what may be going on or how to fix this issue, I would greatly appreciate it. 
                   Thanks a ton.  -Longstride

  • I-Tunes Auto-Restart After Closing Program

    My i-Tunes began automatically restarting when I close the window on my desktop. It is pretty annoying.
    It only restarts after I have had it open. If I have not opened i-tunes it behaves. But, if I open i-Tunes to listen to music on by desktop, and then close the program when I am done, it will restart within 10-seconds.
    I am using Windows 7  and i-Tunes 10.2.2.12
    I can't find a solution and sfter 15-minutes of trying to find a link to submit a help request, I gave up and am trying this avenue.
    Thanks
    Walt
    PS: In the Product selection below, i-Tunes is not one of them. Hope this gets where it needs to go.

    Thanks!
    Shall I create de novell partition on the new\replaced HD?
    Will Novell recreate the mirrored volumes automatically or shall I rebuild them manually?
    TIA
    Nanu
    >>> Marcel Cox<[email protected]> 07/01/2007 20:47:06 >>>
    Nanu Kalmanovitz wrote:
    >
    >Can be the "auto restart after abend" during the loading of NLMs be caused
    >by the second HD dos (drive d:) partition?
    Yes. FATFS.NLM tries to mount all FAT partitions it finds, not just the
    boot partition. So any problem FAT partition may cause trouble.
    >I tried the "FORMAT D: /s /x" command but it display the "Bad track in
    >system space, disk unusable" error.
    This sounds like your disk is physically broken. As a short term solution,
    you can probably delete the DOS partition on D: but not create it again.
    That way, FATFS.NLM will not try to fix the broken part of your disk. Of
    course, you should as soon as possible replace your disk.
    For this, you should first create and copy your DOS partition manually on
    the new disk and then start your server and use NSSMU.NLM to manage the
    mirroring of the NetWare partition(s).
    Marcel Cox (using XanaNews 1.18.1.6)

  • Firefox 33.1.1 crashes after closing program

    Everytime this new release closes, it hangs and crashes. Happens on all my computers, thus something in Firefox 33.1.1. There are dozens and dozens of crashes since this new release. My last crash was in 2013 and prior to that, 2012.
    Mozilla Crash Reports
    Search
    Product:
    Select Version:
    Report:
    Advanced Search - Super Search
    Firefox 33.1.1 Crash Report [@ mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int) ]
    Search Mozilla Support for Help
    ID: e0a1edcd-5e04-4135-8d18-197b82141125
    Signature: mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int)
    Details
    Metadata
    Modules
    Raw Dump
    Extensions
    Signature mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int) More Reports Search
    UUID e0a1edcd-5e04-4135-8d18-197b82141125
    Date Processed 2014-11-25 18:50:45.967352
    Uptime 855
    Last Crash 4758 seconds before submission
    Install Age 917502 since version was first installed.
    Install Time 2014-11-15 03:58:53
    Product Firefox
    Version 33.1.1
    Build ID 20141113143407
    Release Channel release
    OS Windows NT
    OS Version 6.1.7601 Service Pack 1
    Build Architecture x86
    Build Architecture Info GenuineIntel family 6 model 42 stepping 7 | 4
    Crash Reason EXCEPTION_BREAKPOINT
    Crash Address 0x74111425
    User Comments
    App Notes
    AdapterVendorID: 0x8086, AdapterDeviceID: 0x0102, AdapterSubsysID: 04931025, AdapterDriverVersion: 9.17.10.3517
    D2D? D2D+ DWrite? DWrite+ D3D11 Layers? D3D11 Layers+ xpcom_runtime_abort([6548] ###!!! ABORT: file resource://gre/modules/HealthReport.jsm, line 4360)
    Processor Notes sp-processor09_phx1_mozilla_com.27409:2012; MozillaProcessorAlgorithm2015; skunk_classifier: reject - not a plugin hang
    EMCheckCompatibility
    True
    Winsock LSP
    MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    Adapter Vendor ID
    0x8086
    Adapter Device ID
    0x0102
    Total Virtual Memory
    4294836224
    Available Virtual Memory
    3522301952
    System Memory Use Percentage
    44
    Available Page File
    2394779648
    Available Physical Memory
    2335838208
    Bugzilla - Report this bug in Firefox Core Plugins Toolkit
    Related Bugs
    1087674RESOLVED FIXED Firefox won't close with Avast 2015 10.0.2206 when HTTPS scanning is enabled
    1079312RESOLVED FIXED AsyncShutdownTimeout "AddonManager: Waiting for providers to shut down.", "OpenH264Provider", crash in mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int)
    1071702RESOLVED DUPLICATE AsyncShutdown crash with "AddonManager: shutting down providers"
    1057312RESOLVED FIXED AsyncShutdownTimeout "AddonManager: shutting down providers"
    1037826RESOLVED DUPLICATE Shutdown crash in mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int)
    991668VERIFIED FIXED Exporting bookmarks.html may cause AsyncShutdown to abort crash due to "too much recursion" error caused by old promises in Task.jsm
    987323REOPENED --- AsyncShutdown crash: "SessionFile: Finish writing the latest sessionstore.js"
    944873RESOLVED FIXED Crash in mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int) with abort message: ###!!! ABORT: file resource://gre/modules/AsyncShutdown.jsm, line 390)
    Crashing Thread
    Frame Module Signature Source
    0 mozalloc.dll mozalloc_abort(char const* const) memory/mozalloc/mozalloc_abort.cpp
    1 xul.dll NS_DebugBreak xpcom/base/nsDebugImpl.cpp
    2 xul.dll nsDebugImpl::Abort(char const*, int) xpcom/base/nsDebugImpl.cpp
    3 xul.dll NS_InvokeByIndex xpcom/reflect/xptcall/md/win32/xptcinvoke.cpp
    4 xul.dll XPC_WN_CallMethod(JSContext*, unsigned int, JS::Value*) js/xpconnect/src/XPCWrappedNativeJSOps.cpp
    5 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    6 mozjs.dll Interpret js/src/vm/Interpreter.cpp
    7 mozjs.dll js::RunScript(JSContext*, js::RunState&) js/src/vm/Interpreter.cpp
    8 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    9 mozjs.dll js::CallOrConstructBoundFunction(JSContext*, unsigned int, JS::Value*) js/src/jsfun.cpp
    10 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    11 mozjs.dll js_fun_call(JSContext*, unsigned int, JS::Value*) js/src/jsfun.cpp
    12 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    13 mozjs.dll js::Invoke(JSContext*, JS::Value const&, JS::Value const&, unsigned int, JS::Value const*, JS::MutableHandle<JS::Value>) js/src/vm/Interpreter.cpp
    14 mozjs.dll js::DirectProxyHandler::call(JSContext*, JS::Handle<JSObject*>, JS::CallArgs const&) js/src/jsproxy.cpp
    15 mozjs.dll js::CrossCompartmentWrapper::call(JSContext*, JS::Handle<JSObject*>, JS::CallArgs const&) js/src/jswrapper.cpp
    16 mozjs.dll js::Proxy::call(JSContext*, JS::Handle<JSObject*>, JS::CallArgs const&) js/src/jsproxy.cpp
    17 mozjs.dll js::proxy_Call(JSContext*, unsigned int, JS::Value*) js/src/jsproxy.cpp
    18 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    19 mozjs.dll js::Invoke(JSContext*, JS::Value const&, JS::Value const&, unsigned int, JS::Value const*, JS::MutableHandle<JS::Value>) js/src/vm/Interpreter.cpp
    20 mozjs.dll js::jit::DoCallFallback js/src/jit/BaselineIC.cpp
    21 @0x15f058cc
    Show/hide other threads
    Mozilla Crash Reports - Powered by Socorro - All dates are UTC
    Server Status
    Source
    Docs
    API
    Privacy Policy
    Sign in

    Turning off "Enable Telemetry" and leaving Firefox Health and Crash Reporter enabled works just fine. This is solved the problem on two computers. On another computer, had to disable all 3 for it to work properly.

  • Old Microsoft Word Doc Labels Stay up With Gestures after Closing Program

    Macbook Pro
    Early 2011
    Just upgraded to Mavericks
    Don't even know if this is going to make sense... When I do the four-finger-up gesture the tags/labels (not the actual documents) of the documents I had up in Word yesterday are still up.  I've closed those documents.  I've quit the program.  I've reopened the program.  I've opened and closed other documents.  It doesn't matter:  the little label thingies are still there (actually think they're overlapping older ones now).  WHAT IS HAPPENING?!
    Thanks.

    Same problem here - Microsoft Word 2008 (update 12.1.7) will open fine, and then start the spinning pizza of death. Only way out is to force-quit the app. I've tried:
    1) deleting plist and font cache files
    2) uninstalling MS Office 2008, reinstalling and then re-applying updates 12.1.0 and 12.1.7
    3) confirming that Apple's Font Card.app can verify all fonts
    No luck. Currently I can't open any MS word doc without the spinning pizza of death.
    If you are lucky enough that these symptoms only happen with a specific Word .doc file, I would see if the PC-originator could re-save the file as .RTF and resend. If you can then open it OK, you could revert back to .doc (or .docx) format. RTF format is Microsoft's interchange format. If there are anomalies in the .doc file, saving as .RTF can sometimes clean them up. Once done, you can revert back to native MS Word format.
    ...b

  • Adobe Premiere Pro.exe and Dynamiclinkmanager.exe *32  not stopping after closing PP CS6.03

    PP 6.03 will not restart after closing program.  When I try to re-start nothing happens when clicking on the PP6 icon. Looked in task manager and found that Adobe Premiere Pro.exe and Dynamiclinkmanager.exe *32  are not stopping after closing program. Once I manually stop the processes PP will restart as normal. This is on Win 7 Sp1, HP Elitebook 8760W Matrox MXO2 LE. Also Audio meters are not active during capture, can't change clip name during capture.

    Hello Elcuad, and Canino video,
    Please verify the following steps and report back  your findings:
    - uninstall the currently installed MXO2 effects and drivers
    - go to control panel - user accounts - and locate the account you are using, then drop down the UAC level all the way, ok and reboot
    - download our 7.02 driver with Internet Explorer, followed by our effects
    - after the files are downloaded, right click each file, go to properties, and confirm they are not blocked, if they are click the unblock button
    - reinstall the Matrox driver, again, the one we just downloaded, followed by the effects, reboot
    - go to start, all programs and locate the premiere icon, hold shift and ctrl keys down, and launch this particular icon, keeping the keys down until the application opens up
    - please build a new project and try it out

  • How do I make a table of contents for a collection of six short stories that is after the legal page and NOT in the front on an unnumbered page?

    How do I make a table of contents for a collection of six short stories that is after the legal page and NOT in the front on an unnumbered page?
    When I first started I made a title page and then pasted in my first story from a .TXT file. After cleaning up I went back to the front a couple of empty lines ahead of the story and typed in the story title.  Unlarged the font size and centered it, then

    You can't do that. This is what the Pages User Guide, downloadable from your Pages Help menu, says:
    Creating and Updating a Table of Contents
    Each table of contents (TOC) you create using a Word Processing template lists only the content that follows it, up until the next table of contents. If you want a master table of contents for the entire document, it must be the only table of contents, and it must be at the beginning of the document.
    You can do it manually though.

  • Is it possible to keep the "Email me when someone replies" checkbox AFTER you make a posting?

    I'm not sure if I'm the only who does this, but sometimes I forget to check off this box before submitting a new post (i.e, starting a new message thread). Currently, this feature disappears after you submit a new message thread. It is real useful feature to have, and without it, makes your posting experience a lot less desirable.
    Is it technically possible to keep the check-off box available at all times during a posted thread?

    Hi SteveCT99,
    It is possible to automatically subscribe to topics you participate in:
    At the top of the page, click on the "My Settings" link, located after the "Sign Out" link by your name in the grey box.
    Click on the "Subscriptions and Bookmarks" tab
    Check box after "Notify me for my own posts and replies"
     - and/or - 
    Check box after "Automatically subscribe me to topics I participate in" to add the topics to your subscription list.
    Scroll down and Save changes
    You should now automatically get notices each time a new reply is added to the topic.
    Please let me know if this helps.  
    Thanks,
    SunshineF
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

Maybe you are looking for

  • Ringtone transfer - Droid Rookie needs some help

    Just bought a Razr M when they came out last week.    Still on a steep learning curve from BlackberryLand. Downloaded some FREE ringtones from the Internet and have them stored in a folder on my laptop.   mp3 format and proper length. Question:   How

  • Moving objects incrementally based on page number

    Hey all, Trying to automate a group of objects moving down a page, driven by the page location in a book. New to scripting, just need some pointers on best practise, gotchas etc. Any thoughts?

  • HT4946 How do I get the videos I TOOK on my iphone4 INTO my computer in a recognizeable format?

    I seem to be able to get my photos from my iPhone4s into my computer through iTunes but I can't get any of my videos that I took with the camera into my computer. I would appreciate any advice for helping me to do this. contact [email protected] Than

  • Can't get rid of Make Yahoo My Homepage screen

    I downloaded Avast & Malwarebytes, ran them, then deleted them. Avast downloaded Chrome automatically. I deleted that but It changed my homepage from Yahoo to something else. I got the homepage back to Yahoo but every time I call it up, another scree

  • Nokia 5230 two page keyboard to search contacts

    What I always found quite annoying is the keyboard in portrait mode (the one with letters). When you open the contact list from the start screen, the keyboard only has the letters a to o, the letters p to z are on a second page. But whe you open the