Memory Leakage in IE7 & firefox when using SpryData

Hi,
I am trying to figure out what have I done wrong in the code
below so that the memory is not freeing in the browser and it keeps
growing until I close it. I am polling every 3 seconds, and each
time it polls, the memory increases.
I appreciate your help.
<script type="text/javascript">
var dsresults = new
Spry.Data.XMLDataSet("/etradetest/ar/accounts/portfoliogen.jsp",
"/RESULTS/PRODUCT",{useCache:false,loadInterval:3000})
var dstotals = new
Spry.Data.XMLDataSet("/etradetest/ar/accounts/portfoliogen.jsp",
"/RESULTS/TOTALS",{useCache:false,loadInterval:3000});
</script>
<div spry:region="dsresults dstotals"
class="SpryHiddenRegion">
<table border="1" width="100%" style="font-size:11px;"
cellspacing="1" cellpadding="4" >
<tr>
<td width="150px"
style="font-size:13px;font-weight:bold;text-align:right;background-color:#000;color:
#FFF"> {dstotals::@t4}</td>
<td width="80px"
style="font-weight:bold;text-align:left;color: #0066FF"
>&#1575;&#1604;&#1585;&#1589;&#1610;&#1583;
&#1575;&#1604;&#1605;&#1581;&#1580;&#1608;&#1586;</td>
<td width="150px"
style="font-size:13px;font-weight:bold;text-align:right;background-color:#000;color:
#FFF">{dstotals::@t5}</td>
<td width="75px"
style="font-weight:bold;text-align:left;color:
#0066FF">&#1575;&#1604;&#1585;&#1589;&#1610;&#1583;
&#1575;&#1604;&#1606;&#1602;&#1583;&#1610;</td>
<td width="150px"
style="font-size:13px;font-weight:bold;text-align:right;background-color:#000;color:
#FFF;" >{dstotals::@t6}</td>
<td dir="RTL" width="50px"
style="font-weight:bold;text-align:right;color:
#0066FF;">&#1573;&#1580;&#1605;&#1575;&#1604;&#1610;</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0"
cellpadding="2" >
<thead>
<tr class="dynamicportfolio">
<th>&#1575;&#1604;&#1588;&#1585;&#1603;&#1577;</th>
<th>&#1575;&#1604;&#1603;&#1605;&#1610;&#1577;</th>
<th>&#1575;&#1604;&#1603;&#1605;&#1610;&#1577;&#32;&#1575;&#1604;&#1605;&#1593;&#1585;&#1 608;&#1590;&#1577;</th>
<th>&#1575;&#1604;&#1603;&#1605;&#1610;&#1577;&#32;&#1575;&#1604;&#1605;&#1578;&#1608;&#1 601;&#1585;&#1577;</th>
<th>&#1605;&#1593;&#1583;&#1604;&#32;&#1575;&#1604;&#1578;&#1603;&#1604;&#1601;&#1577;</t h>
<th>&#1570;&#1582;&#1585;</th>
<th>&#1573;&#1580;&#1605;&#1575;&#1604;&#1610;&#32;&#1575;&#1604;&#1578;&#1603;&#1604;&#1 601;&#1577;</th>
<th>&#1575;&#1604;&#1602;&#1610;&#1605;&#1577;
&#1575;&#1604;&#1587;&#1608;&#1602;&#1610;&#1577;</th>
<th>&#1575;&#1604;&#1585;&#1576;&#1581;/
&#1575;&#1604;&#1582;&#1587;&#1575;&#1585;&#1577;</th>
</tr>
</thead>
<tr spry:repeat="dsresults" align="right">
<td spry:even="odd" spry: spry:odd="even"><a
style="color:#FFF;font-size:14px"
href="{NAME/@href}">{NAME}</a></td>
<td spry:even="odd" spry:odd="even">{QTY}</td>
<td spry:even="odd"
spry:odd="even">{OUTSTANDUNITS}</td>
<td spry:even="odd"
spry:odd="even">{AVAILABLEUNITS}</td>
<td spry:even="odd"
spry:odd="even">{AVGCOST}</td>
<td spry:even="odd"
spry:odd="even">{LASTPRICE}</td>
<td spry:even="odd"
spry:odd="even">{STOCKCOST}</td>
<td spry:even="odd"
spry:odd="even">{MARKETVALUE}</td>
<td spry:even="odd" spry:odd="even"
spry:if="'{GAINLOSS/@style}'.match(/^RED$/);" style="color:
red;">{GAINLOSS}</td>
<td spry:even="odd" spry:odd="even"
spry:if="'{GAINLOSS/@style}'.match(/^GREEN$/);" style="color:
green;">{GAINLOSS}</td>
</tr>
<tr class="footer">
<td colspan="6" align="right" ></td>
<td align="right">{dstotals::@t1}</td>
<td align="right" >{dstotals::@t2}</td>
<td align="right">{dstotals::@t3}</td>
</tr>
</table>

this is the data being returned from portfoliogen.jsp:
<RESULTS>
<PRODUCT>
<NAME
href="javascript:popupWindow('/etradetest/ar/product/productdetail.jsp?productid=2350&amp ;productname=StockA">StockA</NAME>
<QTY>1</QTY>
<PLEDGEDUNITS>0</PLEDGEDUNITS>
<OUTSTANDUNITS>0</OUTSTANDUNITS>
<AVAILABLEUNITS>1</AVAILABLEUNITS
<AVGCOST>25.75</AVGCOST>
<LASTPRICE>28.25</LASTPRICE>
<STOCKCOST>25.75</STOCKCOST>
<MARKETVALUE>28.25</MARKETVALUE>
<GAINLOSS style="GREEN">2.50</GAINLOSS>
</PRODUCT>
<PRODUCT>
<NAME
href="javascript:popupWindow('/etradetest/ar/product/productdetail.jsp?productid=5110&amp ;productname=StockB)"
>StockB</NAME>
<QTY>2</QTY>
<PLEDGEDUNITS>0</PLEDGEDUNITS>
<OUTSTANDUNITS>0</OUTSTANDUNITS>
<AVAILABLEUNITS>2</AVAILABLEUNITS>
<AVGCOST>23.75</AVGCOST>
<LASTPRICE>14.50</LASTPRICE>
<STOCKCOST>47.50</STOCKCOST>
<MARKETVALUE>29.00</MARKETVALUE>
<GAINLOSS style="RED">-18.50</GAINLOSS>
</PRODUCT>
<TOTALS t1="73.25" t2="57.25" t3=" &lt;Font
color=&quot;#E42217&quot;&gt;-16.00&lt;/Font&gt;"
t4="0.00" t5="26.75" t6="84.00"/>
</RESULTS>
This is the page that is using the spry:
<html>
<head>
<title>&#1601;&#1575;&#1604;&#1603;&#1605;
&#1604;&#1604;&#1582;&#1583;&#1605;&#1575;&#1578;
&#1575;&#1604;&#1605;&#1575;&#1604;&#1610;&#1577;</title>
<script language="javascript">
if(history.length>0)history.go(+1);
</script>
<script src="/etradetest/lib/xpath.js"
type="text/javascript"></script>
<script src="/etradetest/lib/SpryData.js"
type="text/javascript"></script>
<script type="text/javascript">
var dsresults = new
Spry.Data.XMLDataSet("/etradetest/ar/accounts/portfoliogen.jsp",
"/RESULTS/PRODUCT",{useCache:false,loadInterval:3000})
var dstotals = new
Spry.Data.XMLDataSet("/etradetest/ar/accounts/portfoliogen.jsp",
"/RESULTS/TOTALS",{useCache:false,loadInterval:3000});
</script>
<body leftmargin="3" topmargin="0" rightmargin="2"
bgcolor="#000">
<div spry:region="dsresults dstotals"
class="SpryHiddenRegion" DIR="RTL">
<table border="1" width="100%" style="font-size:11px;"
cellspacing="1" cellpadding="4">
<tr>
<td width="50px"
style="font-weight:bold;text-align:right;color:
#0066FF;">&#1573;&#1580;&#1605;&#1575;&#1604;&#1610;</td>
<td width="150px"
style="font-size:13px;font-weight:bold;text-align:right;background-color:#000;color:
#FFF;" >{dstotals::@t6}</td>
<td width="75px"
style="font-weight:bold;text-align:left;color:
#0066FF">&#1575;&#1604;&#1585;&#1589;&#1610;&#1583;&#1575;&#1604;&#1606;&#1602;&#1583;&#1 610;</td>
<td width="150px"
style="font-size:13px;font-weight:bold;text-align:right;background-color:#000;color:
#FFF">{dstotals::@t5}</td>
<td width="80px"
style="font-weight:bold;text-align:left;color: #0066FF"
>&#1575;&#1604;&#1585;&#1589;&#1610;&#1583;
&#1575;&#1604;&#1605;&#1581;&#1580;&#1608;&#1586;</td>
<td width="150px"
style="font-size:13px;font-weight:bold;text-align:right;background-color:#000;color:
#FFF"> {dstotals::@t4}</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0"
cellpadding="2" >
<thead>
<tr class="dynamicportfolio">
<th>&#1575;&#1604;&#1588;&#1585;&#1603;&#1577;</th>
<th>&#1575;&#1604;&#1603;&#1605;&#1610;&#1577;</th>
<th>&#1575;&#1604;&#1603;&#1605;&#1610;&#1577;&#32;&#1575;&#1604;&#1605;&#1593;&#1585;&#1 608;&#1590;&#1577;</th>
<th>&#1575;&#1604;&#1603;&#1605;&#1610;&#1577;&#32;&#1575;&#1604;&#1605;&#1578;&#1608;&#1 601;&#1585;&#1577;</th>
<th>&#1605;&#1593;&#1583;&#1604;&#32;&#1575;&#1604;&#1578;&#1603;&#1604;&#1601;&#1577;</t h>
<th>&#1570;&#1582;&#1585;</th>
<th>&#1573;&#1580;&#1605;&#1575;&#1604;&#1610;&#32;&#1575;&#1604;&#1578;&#1603;&#1604;&#1 601;&#1577;</th>
<th>&#1575;&#1604;&#1602;&#1610;&#1605;&#1577;
&#1575;&#1604;&#1587;&#1608;&#1602;&#1610;&#1577;</th>
<th>&#1575;&#1604;&#1585;&#1576;&#1581;/
&#1575;&#1604;&#1582;&#1587;&#1575;&#1585;&#1577;</th>
</tr>
</thead>
<tr spry:repeat="dsresults" align="right">
<td spry:even="odd" spry: spry:odd="even"><a
style="color:#FFF;font-size:14px"
href="{NAME/@href}">{NAME}</a></td>
<td spry:even="odd" spry:odd="even">{QTY}</td>
<td spry:even="odd"
spry:odd="even">{OUTSTANDUNITS}</td>
<td spry:even="odd"
spry:odd="even">{AVAILABLEUNITS}</td>
<td spry:even="odd"
spry:odd="even">{AVGCOST}</td>
<td spry:even="odd"
spry:odd="even">{LASTPRICE}</td>
<td spry:even="odd"
spry:odd="even">{STOCKCOST}</td>
<td spry:even="odd"
spry:odd="even">{MARKETVALUE}</td>
<td spry:even="odd" spry:odd="even"
spry:if="'{GAINLOSS/@style}'.match(/^RED$/);" style="color:
red;">{GAINLOSS}</td>
<td spry:even="odd" spry:odd="even"
spry:if="'{GAINLOSS/@style}'.match(/^GREEN$/);" style="color:
green;">{GAINLOSS}</td>
</tr>
<tr class="footer">
<td colspan="6" align="right" ></td>
<td align="right">{dstotals::@t1}</td>
<td align="right" >{dstotals::@t2}</td>
<td align="right">{dstotals::@t3}</td>
</tr>
</table>
</div>
</body>
</html>
Now everything is working as they should be, but it is eating
up memory. Nothing special in the code, just followed the samples
provided by Adobe.
Note that I modified the data by changing the name tag to
StockA and StockB while in fact they are written in Arabic.

Similar Messages

  • How can I prevent a memory flow error from occuring when using 3D contour plots?

    After displaying a single contour plot a number of times, LabVIEW crashes and reports a memory overflow error.  I only load a single 2D array, never storing previouls ones. I always index the data for contour plot 0, and don't explicitly store multiple 2D arrays in any buffer, such as appending data to a shift register.  There appears to be some sort of memory leak in LV when using this feature.  Is there a programatic way to flush the stored data in a contour plot prior to displaying the next 2D array of data?

    Hello MicTomReiSr,
    Is this in the LabVIEW development environment?  Are you making changes to the code and then running the VI?  Does the plot contain default data? Is the indicator cleared when the program stops?  The Plot Clean Data method may be what you're looking for.
    Remember that the development environment maintains an undo history of the changes you've made, and copies both the block diagram and FP contents each time.  If you have a lot of data displayed on the front panel you end up copying it multiple times.  This isn't a problem unless you're actively editing the VI in question.
    If you do need to edit and run the VI at the same time (perfectly reasonable, although you might want to consider a 64-bit installation or more RAM if you commonly work with resource-intensive data types like 3D plots) try reducing the Undo history length (Tools>>Options), although be aware that you won't be able to back up as many steps.
    Regards,
    Tom L.

  • "Type mismatch" error in IE7/8 when using custom Actions Menu Image

    Hi all,
    in APEX 4.2: when using a custom image in the "Actions Menu Image" attribute in an interactive report, I get a "Type mismatch" error in IE7/8 when refreshing the report through PPR (filtering, sorting, paginating etc.). When I leave the "Actions Menu Image" field empty, everything works fine. The error doesn't seem to happen in IE9 (unless using compatibility mode), or in any non-IE browser.
    I've been able to reproduce the issue in an application on apex.oracle.com:
    http://apex.oracle.com/pls/apex/f?p=69347:1
    Some debugging seems to indicate that the following line in widget.interactiveReport.js is the culprit:
    lTemp.parentNode.replaceChild($x('apexir_WORKSHEET'), lTemp);Does anybody know if this is a known issue, or if there is some workaround?
    Thanks,
    Tobias

    Hi,
    Great solution Paul! It cost me a while before I found out the Action Menu Image was causing my interactive reports to stop refreshing in IE10 and not other browsers. Your solution works great, I've implemented it with a few minor adjustments:
    - Put the css in report template (for some reason it didn't work in our own application stylesheet)
    - replace  'url("/c/action_dropdown.gif")' with 'url("&APP_IMAGE_PREFIX./<path_to_image>")'
    - place one dynamic action on page 0: after refresh of '#apexir_DATA_PANEL' , set event scope to "Dynamic".
    - Let the Dynamic action also fire on page load.
    - To make sure the dynamic action only works for pages with an interactive report add condition of type 'Exists' with expression:
    select 1
    from   dual
    where  :APP_PAGE_ID in (select page_id
                                            from   apex_application_page_ir
                                            where  application_id = :APP_ID
    Best regards,
    Vincent Deelen

  • Background CSS images not loading in firefox when using a CDN

    Hello,
    I am having trouble getting CSS background images to load in Fire fox when using a CDN.
    Here is a description of the problem:
    - Everything works fine in Chrome
    - Any images loaded through CSS do not load in Firefox (they load in chrome) when i have the CDN enabled.
    - Other images / custom fonts appear to load fine with the CDN enabled
    My setup:
    - wordpress 3.8
    - CDN - Rackspace Cloudfiles synced with w3 total cache plugin (using the 'origin push' configuration)
    - using Cloudflare (mozilla appears to load the site fine while cloudflare is active)
    More about the problem--
    I suspect that the problem has something to do with the htaccess file redirecting some urls or something-- but im not quite sure what to do about this.
    Has anyone encountered this problem before who can offer some insight?
    thanks

    Hi pvijeh, is that the explanation for a security error? I'm having trouble understanding the context.

  • Popup LOV fails in firefox when using an outer join!!!

    I have a popup lov which contains at least 2 outer joins in my query. The popup renders fine in IE but i get the error message:
    "Popup List of Values query is invalid, a display and a return value are needed, the column names need to be different"
    when launching the popup from Firefox (1.5.0.2)
    Anyone got any idea why this works in IE but fails in Firefox?
    Cheers
    Duncan

    Hello,
    Duncan – If you'll run your example code on SQL*Plus, you'll see that for department "OPERATIONS" there is no returned value. This could happen with outer join. The problem can be with the way FF is interpreting this non-value. I didn't try it my self, but maybe if you'll use display null value with your LOV, it will solve the problem. Another possible option is to use NVL() on the returned value.
    Chris – Some of the Apex team members, like Carl, are using FF as their main browser. There are some compatibility issues with the last version of FF, but from that, to your conclusion of Apex only support IE, there's a long road.
    Regards,
    Arie.

  • How can I disable DNS queries in Firefox (when using a proxy) ?

    I am behind a "Chinese wall" and use an HTTP proxy to tunnel and encrypt my data traffic.
    Unfortunately, Firefox still sends DNS queries for the websites, that I visit and reveals more information than I want.
    Is there a way to disable DNS, when I use an HTTP/S proxy ?
    My current workaround is to set a firewall rule for outbound DNS traffic of Firefox. But not all users are able to configure their firewall.

    That is done via an onbeforeunload or onunload event that displays a JavaScript alert.
    *https://developer.mozilla.org/en/DOM/window.onbeforeunload
    *https://developer.mozilla.org/en/DOM/window.onunload
    You can try to search for a Greasemonkey script to reset and block such events.
    *http://www.greasespot.net/ - Greasemonkey
    *http://wiki.greasespot.net/Main_Page - GreaseSpot

  • Memory leak under GNU/Linux when using exec()

    Hi,
    We detected that our application was taking all the free memory of the computer when we were using intensively and periodically the method exec() to execute some commands of the OS. The OS of the computer is a GNU/Linux based OS.
    So, in order to do some monitoring we decided to wrote a simple program that called exec() infinite number of times, and using the profiler tool of Netbeans we saw a memory leak in the program because the number of surviving generations increased during all the execution time. The classes that have more surviving generations are java.lang.ref.Finalizer, java.io.FileDescriptor and byte[].
    We also decided to test this simple program using Windows, and in that OS we saw that the memory leak disappeared: the number of surviving generations was almost stable.
    I attach you the code of the program.
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    public class testExec
        public static void main(String args[]) throws IOException, InterruptedException
            Runtime runtime = Runtime.getRuntime();
            while (true)
                Process process = null;
                InputStream is = null;
                InputStreamReader isr = null;
                BufferedReader br = null;
                try
                    process = runtime.exec("ls");
                    //process = runtime.exec("cmd /c dir");
                    is = process.getInputStream();
                    isr = new InputStreamReader(is);
                    br = new BufferedReader(isr);
                    String line;
                    while ((line = br.readLine()) != null)
                        System.out.println(line);
                finally
                    process.waitFor();
                    if (is != null)
                        is.close();
                    if (isr != null)
                        isr.close();
                    if (br != null)
                        br.close();
                    if (process != null)
                        process.destroy();
    }¿Is anything wrong with the test program we wrote? (we know that is not usual to call infinite times the command ls/dir, but it's just a test)
    ¿Why do we have a memory leak in Linux but not in Windows?
    I will appreciate any help or ideas. Thanks in advance.

    Hi Joby,
    From our last profiling results, we haven't found yet a proper solution. We think that probably the problem is caused by the byte[]'s/FileInputStreams created by the class UNIXProcess that manage the stdin, stdout and stderr streams. It seems that these byte arrays cannot be removed correctly by the garbage collector and they become bigger and bigger, so at the end they took all the memory of the system.
    We downloaded the last version of OpenJDK 6 (build b19) and modified UNIXProcess.java.linux so when we call its method destroy(), we assign to null those streams. We did that because we wanted to indicate to the garbage collector that these objects could be removed, as we saw that the close() methods doesn't do anything on their implementation.
    public void destroy() {
         // There is a risk that pid will be recycled, causing us to
         // kill the wrong process!  So we only terminate processes
         // that appear to still be running.  Even with this check,
         // there is an unavoidable race condition here, but the window
         // is very small, and OSes try hard to not recycle pids too
         // soon, so this is quite safe.
         synchronized (this) {
             if (!hasExited)
              destroyProcess(pid);
            try {
                stdin_stream.close();
                stdout_stream.close();
                stderr_stream.close();
                // LINES WE ADDED
                stdin_stream = null;
                stdout_stream = null;
                stderr_stream = null;
            } catch (IOException e) {
                // ignore
                e.printStackTrace();
        }But this didn't work at all. We saw that we were able to execute for a long time our application and that the free memory of the system wasn't decreasing as before, but we did some profiling with this custom JVM and the test application and we still see more or less the same behaviour: lots of surviving generations, at some point increase of the used heap to the maximum allowed, and finally the crash of the test app.
    So sadly, we still don't have a solution for that problem. You could try to compile OpenJDK 6, modify it, and try it with your program to see if the last version works for you. Compiling OpenJDK 6 in Linux is quite easy: you just have to download the source and the binaries from here and configure your environment with something like this:
    export ANT_HOME=/opt/apache-ant-1.7.1/
    export ALT_BOOTDIR=/usr/lib/jvm/java-6-sun
    export ALT_OUTPUTDIR=/tmp/openjdk
    export ALT_BINARY_PLUGS_PATH=/opt/openjdk-binary-plugs/
    export ALT_JDK_IMPORT_PATH=/usr/lib/jvm/java-6-sun
    export LD_LIBRARY_PATH=
    export CLASSPATH=
    export JAVA_HOME=
    export LANG=C
    export CC=/usr/bin/gcc-4.3
    export CXX=/usr/bin/g++-4.3Hope it helps Joby :)
    Cheers.

  • Memory leakage is plaguing firefox, and mozilla doesn't seem to care.

    When I upgraded to 3.6.8, the memory problems just got worse, and fast. Nothing I tried worked, I disabled plugins and updated things that cause it, but it still is happening. The only solution that is working it downgrading and that is what I did.
    I am seriously thinking about leaving Firefox, even with Noscript keeping me here.

    I'm not sure how to send you a direct message.  I don't do Twitter.  Please let me know how to send you a direct message.  By the way, the equipment charges are still on my account.  I think I'm going to have to take this to my local news here.  Perhaps I'll get some traction in that manner.
    Profanity removed as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

  • How to incorporate Win-zip Courier into Firefox when using Gmail?

    I use Gmail. When I use Firefox to open my Gmail, I could not use Win-zip Courier to encrypt my attachment.
    However, I can do so if I use Google Chrome to do the email attachment.
    Is there any step I missed when installing the programs?

    See this:
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • Flash crashes in Firefox when using a Webcam

    Him my issue seems to only aise in FireFox, Chrome seems to handle the webcam fine
    Flash (not Firefox itself) crashes every time a website tries to access my webcam at all.
    This  happens on every website, including the flash version chack page (http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html) when right clicking and going into Settings, everything works fine unless I switch to the Webcam tab, which immediately crashes Flash.
    Windows 7 32bit, nVidia GTX 560Ti, 4GB Ram, latest drivers for all, latest FireFox and Flash versions.

    What webcam do you use?  I just tried this with my Logitech C920 but couldn't reproduce.

  • Memory Leak on General Block when using Java Script

    Hi,
    I have a web view, that runs a html within the html there is a javascript which has a third party object this object displays some data and grows dynamically every time I invoke this object to grow I see in Instrument monitor whole bunch of Generalblock-256 ( 256 Bytes ) memory leak, I was wondering how can I manage this memory, I know in java script if we assign null to an object java will release it, but it's already reported the leak before I assign the object to null.
    Is there any way I can use let's say by NSAutoReleasePool.
    Thanks.

    The Memory leak is pretty much gone, with new release of OS 2.2.1 as apple has done better memory management for safari.

  • Flashget 3.5 gives an audible alert when a video or sound file completes downloading. Is there a similar feature for Firefox when using Win XP Pro?

    I sure would appreciate a reply at ''<email removed - c>''. Thanks!

    Firefox has no built-in sounds. The following Extension offers a few.
    *Navigational Sounds: https://addons.mozilla.org/en-US/firefox/addon/1030/

  • E-mail Reply function no longer works -- only when using Firefox. Gives blank compose screen. Have tried settings changes. Have un and re installed firefox.

    Problem does not occur when using a different browser.

    Is it Yahoo! mail?? Many users have discovered all kind of problems and glitches with Yahoo! mail in Firefox when using an old bookmark saved before Yahoo!'s recent server changes.
    I suggest clearing your Yahoo cookies and entering through the main page to get a better address for your current mail server.
    To remove your Yahoo cookies -- save any pending work first -- call up the Cookies dialog while viewing any page on yahoo.com (or your Yahoo site). You can use either:
    * right-click the page > View Page Info > Security > "View Cookies"
    * Tools menu > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then go to one of these Yahoo addresses and click on login or mail from there:
    * Yahoo home page: https://www.yahoo.com/
    * My Yahoo page: https://my.yahoo.com/
    * General mail redirect: https://mail.yahoo.com/
    * AT&T users: http://att.yahoo.com/
    * Other country sites (not on .com): the main Yahoo page for your country
    Does that help?

  • Alt+[m] calls up a new instance of Firefox when one instance is already running??

    I have another program, DataCad v15, which uses macros. Alt+[m] is one of those macros and it will call up a new instance of Firefox when using DataCad. In trying to trouble shoot the problem I found that entering the macro when DataCad is NOT running, it will call up a new instance of Firefox. Any explanation for this????

    More info:
    I have been using DataCAD and the fore-mentioned macro for years. I have been using FireFox for years although not as long as DataCad. I never had this problem before!
    I have solved the problem by changing out the keyboard and (wireless Logitech) mouse. '''BUT''' there have not figured out the cause. The keyboard (s. I have 3) is a Gateway Anykey programmable keyboard (with another set of function keys on the left - very useful in DataCad. Keeping the new mouse (wired MS) and switching back to the Gateway keyboard still calls up FireFox despite "de-programming" all programmed macros and re-mapped keys several times.
    I can find no documentation about Alt+m, as a macro for calling up FireFox in MS XP or Mozilla, so that mystifies me. This problem exceeds my computer expertise.
    Stephen

  • "Not Enough Memory to Complete this Operation" Error using notifiers in LabVIEW

    I get the (windows?) error message "Not Enough Memory to Complete this Operation" when using notifiers to send a flattened byte string as a response from one VI back to my calling VI. I do get my data and everything works out perfectly between the two VIs, but I do get this annoying error message that requires a user interface action. Why?

    Well, I'm thinking you may have stumbled across a LV issue.  I can get it to crash a lot faster than that when I clear your plot history in the top chart.  It definitely seems as though LV has a huge memory leak on charts having their history cleared.  With your 500,000 data point history, I lose about 170MB of memory every time I clear the chart history.
    When I run your VI, the first time you plot data, I see a 170MB jump in memory, which I am assuming is the chart allocating its chart buffer.  But, then I continue to see more memory being used as more data is collected (if you don't use your default 1 sample a sec rate, you can see this happen much faster - I am using 5k sample rate and 5k samples).  Eventually, even without clearing the chart history, this will cause the system to crash.
    I did a quick test and dumped the waveform and just used doubles and plotted that.  Memory usage is drastically better, as I see no memory leak during standard acquisition (I still see the memory leak when the chart is cleared however).
    You may have to rewrite to not use the waveform and signal for your chart and just use DBLs.

Maybe you are looking for

  • Comcast Arris Modem/Router interfering with AirPort Extreme?

    Constantly getting knocked off the internet. Using an Arris Modem/Router  TG862G and an Apple Airport Router. 3 feet separate each router. Am I getting knocked off the internet; because my AirPort Extreme  is "confusing" my Arris Modem? Could interfe

  • E recruitment  How to hide salary range option

    Hi E recruitment module I am facing one issue for hide salary range option. My client asking he donu2019t have for salary range option so I have to do hide for salary range in BSP Please guide me any one where I can hide this salary option R3 in e re

  • Adobe Air for Android - caching key event that have "unusual" keycode

    I am developing an application for a platform. The OS of this platform is Android Gingerbread (2.3.4) The platform has some buttons with "unusual" key code: 141, 131 etc. Native application that created in ADT can catch and respond to these keyboard

  • Dsconf export - SunOne 6.2 DS

    Do we have any command to export ldif in DS6 which does not prompt for password. I tried ./dsconf export -c -h servername -p 389 suffix-DN /path/output.ldif I know we can have -w option to pass password file, but we don't want to use it. Is there any

  • Use Time Machine to restore my iTunes library ?

    I installed this plug-in into iTunes which is supposed to organize your music collection by filling in the dates, genre and any missing album artwork, but I was not satisfied with the results. I uninstalled the plug-in, but now I was wondering if I c