explanation of the error

I finally wittle down a mistake which took place in my much larger project to a few lines of code simply reproduce the error. It errors on PC and MAC cs5.5. Here are the scripts/process of how to recreate the error.

startup script to set the engine: jumpStarter.jsx

#targetengine "testEngine"

var globalVar = "testing";

script that calls another via doScript: globalTest.jsx

#targetengine "testEngine"

setLabel();

function setLabel(myParams)
{
    var myFile = new File(app.filePath + "/Scripts/Scripts Panel/testScript.jsx");
    app.doScript(myFile,ScriptLanguage.JAVASCRIPT,undefined,UndoModes.fastEntireScript);
}

script that adds a label to the document: testScript.jsx

#targetengine "testEngine"
doStuff()

function doStuff()
{
    app.activeDocument.rectangles.add();
    app.activeDocument.insertLabel("tempLabel","anyLabel");
    //app.activeDocument.updateCrossReferences();
}

The process is simple. Just put the jumpStarter.jsx in the folder and the other two scripts in the folder of the startup scripts Panel. Load Indesign and double-click on the globalTest.jsx in the actions panel. You should see a rectangle placed on the page and a * next to the file name. If you close the document and choose to not save Indesign must block. I'm interested to know what is causing this crash!

Note: after days of attempts, I came across the commented line of code in testScript.jsx. If this line is décommentée then there is no problem in closing the document! However, I'm not sure what actually this method and after researching what cross references are that it does not seem applicapable. I'm looking also someone explain this if possible.

Here is the protectiveShutdownlog that occurs: http://pastebin.com/04pHQv5s

Here is the report of accident that occurs: http://pastebin.com/JA6esJR2

Hi bduffy,

I have experienced this bug appeared in ID CS5 and is not yet resolved. He is not related to the use of a startup script, a persistent engine, app.docript (), etc., and it has no connection with global variables, variable names, etc..

The bug occurs generally when:

(1) a script inserts an tag in the active document;

(2) once the script has completed, the user tries to close the active document and does not record it.

Minimal code that should lead to the bug:

app.activeDocument.insertLabel ('foo', 'bar');

then the user, go to file > close


My own speculation on the causes of this bug:


The internal pointer that holds app.activeDocument is not correctly updated after insertLabel() is done. Perhaps at some level subsystem does not identify the insertion of the label as an actual change and forget to update some underlying specifier... Who knows?

Patch:

I found that all access to property app.activeDocument at the end of the script usually corrects the instability because this probably causes the system to recalculate the document specifier:

app.activeDocument.insertLabel ('foo', 'bar');

app.activeDocument; patch

=> no bug


As a stronger and safer approach, I suggest that you add this line at the end of any script:

app.properties.activeDocument & app.activeDocument.getElements ();

This is of course no guarantee!

Hope that helps.

@+

Marc

Tags: InDesign

Similar Questions

  • Someone at-explanation of the ERROR: F3-F000-0008?

    In November, a man posted that he had to use his recovery disk which resulted in the following experience:

    "I ran straight afterwards, the recovery disk in what, in my view, is called the start menu? Anyway, after a few minutes I kept getting an error message that has something to do with 'Preinst.swm file. After a couple of times of clicking 'continue' and see this same error message by clicking 'ignore' and running the 2nd DVD, an error message "error: F3-F000-0008". "»

    Now I assume that the error preinst.swm is due probably to a scratch in the recovery disc, or some fault in the DVD that I used and not with the portable reality itself. I need just confirmation from you guys on this subject. »

    The result was essentially - who knows, good luck.

    I get the same error, has worked with technical support over the phone for 2 hours and ended up with - who knows, good luck.

    Help, please!

    Hello

    Looks like an error with the disks. Sometimes they can be unbalanced in the hard drive, or they can be damaged somehow.

    See if you can use other bootable discs to test this, if they work, you may need to contact Toshiba to get some new drives.

    I hope this helps. :)

  • (Newbie question) Interval syntax question / explanation of the error

    Ok. So I reach into a big ticketing system based on Oracle (64 bit 11g 11.2.0.1.0) where they store 'ticket-open-time', 'ticket-fixed-time' and the interval of 'time-to-repair. Initially I wanted to calculate the number of minutes of the time of repair. 6 hours and countless Google searches later, I'm not about to the appropriate syntax. I was able to work around the problem through a simple calculation based on the values open and resolved. What I can't understand, is why I can't apply the same syntax extract just the interval field.

    Here's a simplified query that works:

    SELECT
    To_char (OpenTimeGMT, ' ' the HH24: MI: SS DD/MM/YYYY) "OT".
    , TO_CHAR (ResolvedTimeGMT, ' ' the HH24: MI: SS DD/MM/YYYY) "RT".
    , TO_CHAR (TimeToRepairGMT, ' ' the HH24: MI: SS DD/MM/YYYY) "TTR".
    excerpt (days of day (ResolvedTimeGMT - OpenTimeGMT) the second) "days".
    excerpt (time of day (ResolvedTimeGMT - OpenTimeGMT) the second) "hours."
    excerpt ((ResolvedTimeGMT - OpenTimeGMT) minute second day) "Minutes."
    , (extract (day of (ResolvedTimeGMT - OpenTimeGMT) day to second)) * 24 * 60 +.
    (extract (hour of the day (ResolvedTimeGMT - OpenTimeGMT) the second)) * 60 +.
    extract (minute since (ResolvedTimeGMT - OpenTimeGMT) second day) "TotalMinutes".
    FROM there where

    Which produces:
    [OT] 24/09/2012 20:06:29
    [RT] 26/09/2012 13:56:13
    [TTR] 4000/02/01 17:49:44 - Note the year.
    [Days] 1
    [Hours] 17
    [Minutes] 49
    [TotalMinutes] 2509

    The question:
    When I write [extract (minute of day (ResolvedTimeGMT - OpenTimeGMT) the second) "Minutes"], I get 49 minutes I expect

    When I write [extract (minute since (TimeToRepairGMT) second day) "Minutes"], I get an error "syntax error was found in the interval value expression.

    The three fields are declared as 'date' DESC command (even if TimeToRepairGMT is clearly an interval, based on the value of "4000/02/01 17:49:44" ""). While I can plough with my work-around, I really want to know how to deal with intervals that are stored in Oracle tables as dates. Any help is appreciated!

    Hello

    Welcome to the forum!

    966091 wrote:
    Ok. If I am living in a large (64 bit 11g 11.2.0.1.0) Oracle-based ticketing system

    Thanks, that's very useful. Always give your version (11.2.0.1.0) whenever you post a question.

    where they store 'ticket-open-time' and "ticket-fixed-time" interval "time-to-repair. Initially I wanted to calculate the number of minutes of the time of repair. 6 hours and countless Google searches later, I'm not about to the appropriate syntax. I was able to work around the problem through a simple calculation based on the values open and resolved. What I can't understand, is why I can't apply the same syntax extract just the interval field.

    Here's a simplified query that works:

    SELECT
    To_char (OpenTimeGMT, ' ' the HH24: MI: SS DD/MM/YYYY) "OT".
    , TO_CHAR (ResolvedTimeGMT, ' ' the HH24: MI: SS DD/MM/YYYY) "RT".
    , TO_CHAR (TimeToRepairGMT, ' ' the HH24: MI: SS DD/MM/YYYY) "TTR".
    excerpt (days of day (ResolvedTimeGMT - OpenTimeGMT) the second) "days".
    excerpt (time of day (ResolvedTimeGMT - OpenTimeGMT) the second) "hours."
    excerpt ((ResolvedTimeGMT - OpenTimeGMT) minute second day) "Minutes."
    , (extract (day of (ResolvedTimeGMT - OpenTimeGMT) day to second)) * 24 * 60 +.
    (extract (hour of the day (ResolvedTimeGMT - OpenTimeGMT) the second)) * 60 +.
    extract (minute since (ResolvedTimeGMT - OpenTimeGMT) second day) "TotalMinutes".
    FROM there where

    Which produces:
    [OT] 24/09/2012 20:06:29
    [RT] 26/09/2012 13:56:13
    [TTR] 4000/02/01 17:49:44 - Note the year.
    [Days] 1
    [Hours] 17
    [Minutes] 49
    [TotalMinutes] 2509

    The question:
    When I write [extract (minute of day (ResolvedTimeGMT - OpenTimeGMT) the second) "Minutes"], I get 49 minutes I expect

    When I write [extract (minute since (TimeToRepairGMT) second day) "Minutes"], I get an error "syntax error was found in the interval value expression.

    The three fields are declared as 'date' DESC command (even if TimeToRepairGMT is clearly an interval, based on the value of "4000/02/01 17:49:44" "").

    In fact, it is more likely that it is just a DATE, who got the year wrong somehow. Show how you have assigned values to these columns.

    While I can plough with my work-around, I really want to know how to deal with intervals that are stored in Oracle tables as dates. Any help is appreciated!

    The intervals are difficult to work. I suggest that you use very little, or not at all. Keep the storage points in time as DATEs, but store the length of the time as a NUMBER; either the number of minutes, hours, or days, depending on what is appropriate for your data and your business needs best.

    Let's say you decide to keep TimeToRepair as the number of minutes, the length of time of OpenTImeGMT to ResolvedTimeGMT. When you subtract one DATE from another in Oracle, the result is a NUMBER, the number of days between these two DATEs. To get the number of minutes, which multiplied by the number of minutes per day. So the forumla for TimeToRepair is

    (ResolvedTimeGMT - OpenTimeGMT) * 24 * 60
    

    If you store the length of time as a NUMBER, it is very easy to get totals and averages.

    If you want to display this number of minutes like days hours: minutes: seconds, then you can use an INTERVAL, but just for display. Use the NUMTODSINTERVAL function to convert the NUMBER to an INTERVAL DAY TO SECOND:

    NUMTODSINTERVAL (TimeToRepair, 'MINUTE')
    

    I hope this helps you.
    Whenever you have a question, it is useful to show an example of what you have tried and what results you want to get. Post CREATE TABLE and instructions INSERT for examples of data and the results you would get from these data. You will get answers sooner if your question is specific. "How work intervals?" is a very difficult question. Many people who can help you to not trying to answer a question as broad. But if you can formulate your question as: "I need help understanding intervals. Beginning with this data... I tried thinking it would follow... but instead, I got... Why is this? The manual SQL language, to... says..., why is... happening? ", and then it will be easier to help you.

  • How to explain the error in the executable file?

    As everyone knows, there are 3 parts to the cluster of error: status and source code. The State's flag, the code is the error code and the source is where Labview think that the error occurred. Normally, when I'm in the environment labview course I can just right mouse click the error and click "explain the error" and a description and detailed error possible cause rises.

    However, when I create an executable I don't know how to explain the error to the user, such as labview.

    When an error occurs that I wish I had a popup that says code error, source and EXPLANATION. The code and the only source is so enigmatic sound quite panic inducing the user, whether or not the error is unrecoverable/crash-inducing. Also this would save me having to search the online error code.

    How to make the explanation of the error code? There is a vi that I can enter an error code and get the explanation string?

    There is probably something simple I forget but I couldn't find the answer in my research. Thanks in advance for your help.

    Simple error handler and screw General Error Handler?

  • How to fix the error on the packets to the PCI DDK program - 7358

    Hello world

    I'm trying the RTX driver for motion NI PCI-7358.

    I would like to achieve the same function as flex_load_dac(). According to the DDK, I have to manually send the order via the package. The flex_load_dac() format is:

    Load CAD
    CommandID: 61
    Valid resource type: DAC
    Vector type: entry
    (Send) packet data
    Word Count: 1
    The data passed to: i16 outputValue

    So I write my code like:

    //////////////////////////////////

    #define CB 0
    #define CSR 8

    x = *(BaseAddress+CSR);
    While (!) (x & 0x01)) {}
    printf("%X\n",x);
    x = *(BaseAddress+CSR);
    } //wait for the RTR
    printf ("%X\n",x Heading1);
    * BaseAddress + BC = (u16) 0 X 0131; Number of words< 8="" |="" resource="">

    x = *(BaseAddress+CSR);
    While (!) (x & 0x01)) {}
    printf("%X\n",x);
    x = *(BaseAddress+CSR);
    } //wait for the RTR
    printf ("%X\n",x HEAD2);
    * BaseAddress + BC = (u16) 61; Command ID

    x = *(BaseAddress+CSR);
    While (!) (x & 0x01)) {}
    printf("%X\n",x);
    x = *(BaseAddress+CSR);
    } //wait for the RTR
    printf ("DATA %X\n",x);
    * BaseAddress + BC = (i16) 0 x 1111; write a value to the DAC output

    x = *(BaseAddress+CSR);
    While (!) (x & 0x01)) {}
    printf("%X\n",x);
    x = *(BaseAddress+CSR);
    } //wait for the RTR
    printf ("%X\n",x FOOT);
    * BaseAddress + BC = (u16) 0XFF0A; vector = 0XFF
     
    The print output is:

    HEADING1 1
    0
    0
    0
    HEAD2 1
    8
    10
    DATA 11
    10
    10
    10
    10
    10
    10
    FOOT 11

    It seems that after the command ID is sent to the card, a mistake on packages is completed.

    I've read all the related document on motion control card, but none speak the detailed explanation of the error on the packages and how to cope.

    Can any body help me with this problem or point out what's not in my package?

    It is a very urgent project. I wish I can get help on you!

    Thank you in advance!

    Rick

    Rick,

    Attached a few old files are used to create driver linux for the x 733 and 734 x cards.  The control interface is the same for the boards of 735 x.  They are provided AS IS, but I think they'll give you a very useful overview of what you need to do.  For example to remove the error command you send the terminator of value package several times the error is cleared.

    Rodger

  • Unknown to the Transactions with the error.

    Hello

    I am facing problem in waiting Unknown to Transactions with the following error.
    Error code
    An invalid account is associated with the element being processed
    Explanation of the error
    An invalid account is associated with the element being processed

    Help, please.

    Thank you

    GHG.

    Hi, GHG,.

    The records are stuck because of the good DISTRIBUTION_ACCOUNT_ID in not associated with these records stuck.

    Please see the note of oracle that provide the script to update the DISTRIBUTION_ACCOUNT_ID below.

    Misc. erroneous Transactions (Doc ID 1398623.1)

    Try this script on 1 if test environment does not work then go for SR.

    Kind regards

    Ganesh

  • Use the error report data store capacity

    Hello world

    When I try to get the report for a capacity of data store, I got an error like home but he had no explanation for the error.

    Does anyone know why I get this error? I've updated vCOps from 5.0.3 to 5.6. Maybe it has to do something with that.

    Thank you in advance.

    Thanks for the replies;

    I mean by object parent exactly your situation - this is the under(inside?) folder.

    If you can, try to move a data store on the file and reports should work for it.

    in any case, it is a known problem that will be fixed in the next version of update.

  • I deleted by mistake my certificates. Now, I get the error messages trying to connect to gMail, eBay and my bank accounts, etc.

    I recently did some "housekeeping" on my computer and for reasons known only to nini-gods, I delected all my security certificates. Now, when I try to log in to gmail, ebay, my bank accounts or any https:// site, I get a warning message "this connection is Untrusted." I click on the links provided to overcome the safety message, but whenever I return to the site I have to jump through all the hoops again. I see a small box that can be clicked to confirm security exception, but the little box that must be clicked to "make the permanent exception" is always grayed out. I know I'm on the right sites - have been using the links on the personal bar for years without problems. It started right after I deleted the certificates.

    I've tried everything. Firefox RELOADED (use 3.6.4) deleted and reloaded the bookmarks, follow the instructions when I get the error message. Nothing works. As soon as I close the browser, and then go back online, I'm back to error messages.

    Can anyone help?

    COR - el: thanks a lot for this solution. Everything works fine now.

    However, I had a problem with deleting the files. I dragged to the trash, and then tried to access the sites in question and received the same message. I restarted the computer and when I checked the files I was dragged to the trash were right where they were before. The only file that are been trashed was the .txt file.

    So I renamed them as you suggested and now everything works fine.

    Thank you again once - I tried to understand by using the troubleshooting Firefox site, but your explanation was simple and easy to follow.

    Val

  • Why 'Read a fixed number of samples' help with the error 200279?

    Hello world

    It is a question about a tip found in the explanations on the acquisition of data error-200279. This explanation it is said: '... ". reading a fixed number of samples instead of all available samples can fix this... »

    AFAIK the DAQ system buffer is a ring buffer, so we can consider having a writing position and a position of reading "in motion" along the ring. While the playback position is the position of writing, everything is brilliant. But if writing catch up reading, samples will be overwritten and therefore-> error-200279.

    So here's my question:

    I do not understand why a fixed amount of reading samples would help me with this error. I don't understand why other Councils (increase in the size of the buffer or the frequency of reading) would help me because they reduce the probability of the playback position being outrunned by the position of the writing.

    But if I read everything which is available, whenever I read the only way for the buffer fills would be that the time between two readings take more time than necessary fill the entire buffer.

    Or in other words to each reading I will read at least as many elements that it has been filled by writing since the last read, so the only way to fill the buffer would fill completely at once since the last reading.

    This should be a lot safer than reading a fixed amount, because in this case, I'd get a problem if I read it that fewer items than writing complete at the same time, regardless of the number of items that would be and no matter what the size of the size of the buffer that would be.

    What I understand here?

    Thanks and regards,

    Sebastian

    SBach wrote: this VI is a State Machine in queue, the reading part is made in the case of timeout and cases are used as initialization orders, stop and change the outside DAQ hardware.

    That I can't tell when these commands will trigger the time between two readings could not be set. If a strictly fixed amount of data could lead to a buffer to fill.

    Init command: you certainly don't have a running task.

    Stop: You stop the task, then doing here if you get overrun.

    Edit tasks: you will probably need to stop the task still before you can edit the task, but let's go back to not caring.

    The way I see it, the other commands must stop the task anyway.  If you can leave the timeout do its job and do not do a lot of extra stuff.

    And here are some alternatives:

    1. use a shift register to keep track of how long your wait time should be.  In the case of reading, make the deadline to be whatever it is that you are using.  In all other cases, only the 0 so that a read timeout must be performed immediately (once the queue is empty).

    2. When you do your check to 1.5 times the timeout, if there is too much data, queue a reading at the front of the queue so that playback will happen.  The idea is that you really want to keep the same stack sizes to keep the memory to be allocated.  So just to be read more often.

  • find errors returned by the error handler simple vi

    When running the application in the development environment and after the application of the error handler code, I found would be Manager of simple errors that VI is a few errors which I do not know where on the block diagram the source code. Is it possible to find it?

    Kind regards

    I think I have strength to my self more clear in my post earlier. So here's the explanation:

    I have a few variant to the data functions in the while loop of a block diagram. When I now run my code after the implementation of the code of error handler I get errors. One of the ways I could think now to find which variant of function data is wired content type incorrect data is to run the vi Analyzer and find in the report generated by the vi Analyzer.

    Lets see how it goes.

  • As that I start my computer I get the error message "Rundll: error loading C:\windows\idoroyuyevev.dll the specified module could not be found." How should I do?

    Original title: Rundll error help

    As that I start my computer I get the error message "Rundll: error loading C:\windows\idoroyuyevev.dll the specified module could not be found." -What it means and how to fix it?

    It is sometimes easy to get rid of the error message by doing something like disable the startup item in msconfig (if you can still find), but I suggest you fix the problem and difficulty not only the symptom of the problem by simply deleting the startup message.
    I would also not recommend you start digging in the registry to try to find the startup item and remove it unless you have a backup of your system or at least a backup of your registry, because there is no 'Cancel' or 'quit without saving changes' option in regedit.  If you make a mistake, that's all.
    These ideas relieve 'rapid' and sometimes risky of the symptom if they not even work at all, but they can't actually solve the problem.  Also, I'd be suspicious of ideas that begin with the words "try."  You don't need to try things, you need to fix things.  You don't need to try ideas that might work, you must do something that will always work all the time.
    Here are the detailed instructions that protect you and solve your problem in the 'right' way.
    There is very little. DLL files that should be loaded from the C:\WINDOWS folder and is not one of them.  If you do not have a good explanation for the name of the file in a Google search, the chances are good that your system is currently or has been infected by malware.
    A "Cannot find...". ', ' Failed to start..., "Could not load..." ». "Might not work... "" Cannot run ""error loading... ". "or"specific module could not be found"message at startup is usually related to the malware that has been configured to run at startup, but the referenced file has been removed after a malware scan, leaving behind him a startup item or the registry entry pointing to a file that does not exist.
    It might be a removal of malicious software or an application not installed.  The entry may have a curious looking name since it was probably generated at random when the malware was installed. If you search your system for the referenced file, you may not find.
    Windows attempts to load this file but cannot locate because the file has been deleted for most probably during an analysis of the malware. However, an orphaned associate of remainders of startup parameter or registry entry and tells Windows to load the file when you start or connection.
    So you should delete the referenced entry Windows stop trying to load or run the file. It may or may not be included in the registry, but you can find it.  Autoruns (see below) you get the elements no matter where it is.

    You must be sure to solve the problem and not just fix the symptom of the problem by simply relieving your message - system is not a fix (there is a difference).

    If you just locate and uncheck the item in msconfig, which disables the element but does not remove the reference to the element of false starting your computer.   The msconfig program is not a Startup Manager, that's a troubleshooting tool.  Disabling things in msconfig to put an end to the messages and think that your problem is solved is short-sighted and leave behind him a sloppy XP configuration.  Just disable the display of a start-up error message should not count as a 'solution' to the problem.
    If you are comfortable editing the registry, you can find and remove the reference directly from there or remove it using a popular third-party tool called Autoruns.  The problem can always be found in the registry well.
    Before making any changes to your registry by hand or with third-party tools, don't forget to first make a backup of the registry
    . There is no cancellation or exit without saving the option in regedit.
    Here is a link to a popular registry backup tool:
    You can also use the Autoruns to find the element of start remains little matter where he's hiding.  Autoruns does not install anything on your computer.  It will display all startup locations where the reference may be then you can turn it off or remove it completely.  Here is the download link for Autoruns:
    Run Autoruns.exe and wait that he at the end of the filling of the list of entries.
    When the Autoruns is finished scanning your system, it will say "Ready" in the lower left corner.  Autoruns can be a little intimidating to first if you have never seen it before because it displays a lot of information.  You are really interested only a few sections.
    The problem is usually to start the system or the user startup entries, then click the connection tab and see if the startup item is there.
    Scroll through the list and look for a boot entry associated files in the error message.
    If you can't find on the connection tab, look in any tab.
    You can also click file, search to search for logon, or any tab for all or part of the name of the element.
    Right-click on the offending entry and choose Remove.  If you are not sure what it is, you can just turn it off, restart and if the problem is resolved and things are functioning normally and everything works fine, then remove the offending entry.  If you don't see it in Autoruns, you may edit the registry and remove the item from your startup folder it.  Autoruns shall display the same information however.
    Given that your system has or has had an infection, follow up with this:
    Perform scans for malware, and then fix any problems:
    Download, install, update and do a full scan with these free malware detection programs at:
    Malwarebytes (MMFA): http://malwarebytes.org/
    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/
    They can be uninstalled later if you wish.
    Restart your computer and solve the outstanding issues.
  • Get the error code 28 when using my LG U8120

    Original title: I'm looking 4 a driver for a lg u8120. In my device manager, because the device has a little yellow!, I right click on it and go to its properties. It is 28 error code. Help, please!

    The error msg shows the location of the port is: Port_ #0002.Hub_ #0004, but I cannot figure out where is this place, or even if its where I need goWhen, this phone came out the last system is windows xp, and my computer is Windows 7.

    Hello

    1 are you getting error code 28 in Windows XP or Windows 7?

    2. you did it before the issue of any material changes or software?

    Method 1: Explanation of error codes generated by Device Manager in Windows XP:

    http://support.Microsoft.com/kb/310123

    Method 2: How to manage devices in Windows XP:

    http://support.Microsoft.com/kb/283658

    If you are running Windows 7, please follow the steps in the below link:

    Updated a hardware driver that is not working properly

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly

    Method 3: Download the appropriate driver and support tool for your mobile from the site of the manufacturer:

    http://www.lg.com/ae/support/product/support-product-profile-mobile-redux.jsp?customerModelCode=U8120&matchedModelCode=NOT_MATCHED&searchEngineModelCode=U8120&initialTab=documents&targetPage=support-product-profile

    Kapil Purohit - Microsoft

  • I get the error message at startup missing modul c:\windows\system32\wabqwuny.dll

    what I'm doing. Download this file are what

    It is sometimes easy to get rid of the error message by doing something like disable the startup item in msconfig (if you can still find), but I suggest you fix the problem and difficulty not only the symptom of the problem by simply deleting the startup message.
    I would also not recommend you start digging in the registry to try to find the startup item and remove it unless you have a backup of your system or at least a backup of your registry, because there is no 'Cancel' or 'quit without saving changes' option in regedit.  If you make a mistake, that's all.
    These ideas relieve 'rapid' and sometimes risky of the symptom if they not even work at all, but they can't actually solve the problem.  Also, I'd be suspicious of ideas that begin with the words "try."  You don't need to try things, you need to fix things.  You don't need to try ideas that might work, you must do something that will always work all the time.
    Here are the detailed instructions that protect you and solve your problem in the 'right' way.
    If you do not have a good explanation for the name of the file in a Google search, the chances are good that your system is currently or has been infected by malware.
    A "Cannot find...". ', ' Failed to start..., "Could not load..." ». "Might not work... "" Cannot run ""error loading... ". "or"specific module could not be found"message at startup is usually related to the malware that has been configured to run at startup, but the referenced file has been removed after a malware scan, leaving behind him a startup item or the registry entry pointing to a file that does not exist.
    It might be a removal of malicious software or an application not installed.  The entry may have a curious looking name since it was probably generated at random when the malware was installed. If you search your system for the referenced file, you may not find.
    Windows attempts to load this file but cannot locate because the file has been deleted for most probably during an analysis of the malware. However, an orphaned associate of remainders of startup parameter or registry entry and tells Windows to load the file when you start or connection.
    So you should delete the referenced entry Windows stop trying to load or run the file. It may or may not be included in the registry, but you can find it.  Autoruns (see below) you get the elements no matter where it is.

    You must be sure to solve the problem and not just fix the symptom of the problem by simply relieving your message - system is not a fix (there is a difference).

    If you just locate and uncheck the item in msconfig, which disables the element but does not remove the reference to the element of false starting your computer.   The msconfig program is not a Startup Manager, that's a troubleshooting tool.  Disabling things in msconfig to put an end to the messages and think that your problem is solved is short-sighted and leave behind him a sloppy XP configuration.  Just disable the display of a start-up error message should not count as a 'solution' to the problem.
    If you are comfortable editing the registry, you can find and remove the reference directly from there or remove it using a popular third-party tool called Autoruns.  The problem can always be found in the registry well.
    Before making any changes to your registry by hand or with third-party tools, don't forget to first make a backup of the registry
    . There is no cancellation or exit without saving the option in regedit.
    Here is a link to a popular registry backup tool:
    You can also use the Autoruns to find the element of start remains little matter where he's hiding.  Autoruns does not install anything on your computer.  It will display all startup locations where the reference may be then you can turn it off or remove it completely.  Here is the download link for Autoruns:
    Run Autoruns.exe and wait that he at the end of the filling of the list of entries.
    When the Autoruns is finished scanning your system, it will say "Ready" in the lower left corner.  Autoruns can be a little intimidating to first if you have never seen it before because it displays a lot of information.  You are really interested only a few sections.
    The problem is usually to start the system or the user startup entries, then click the connection tab and see if the startup item is there.
    Scroll through the list and look for a boot entry associated files in the error message.
    If you can't find on the connection tab, look in any tab.
    You can also click file, search to search for logon, or any tab for all or part of the name of the element.
    Right-click on the offending entry and choose Remove.  If you are not sure what it is, you can simply disable, restart and if the problem is resolved and then remove the offending entry.  If you don't see it in Autoruns, you may edit the registry and remove the item from your startup folder it.  Autoruns shall display the same information however.
    Given that your system has or has had an infection, follow up with this:
    Perform scans for malware, and then fix any problems:
    Download, install, update and do a full scan with these free malware detection programs:
    Malwarebytes (MMFA): http://malwarebytes.org/
    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/
    They can be uninstalled later if you wish.
    Restart your computer and solve the outstanding issues.
  • My desk blinking from time to time, I tried to restart, but the error remains.

    Original title: ErrorMy Office

    Hi!, developer of Microsoft and others.

    I experienced an error my computer. And I don't know what kind of error this, my desk blinking from time to time, I tried to restart but the error remains. Last night I also used my computer and it works fine and the next day all of a sudden the error appeared and I don't know why my computer gets this error? I took a video, please see this if my explanation is unclear to you, here is the link: click me

    Thanks in advance for your help. I really, really appreciate your concern. God bless you. :)

    Hi Jireh,

    Thanks for posting the query on the Microsoft Community Forums. You have reached the right place. Let us work together to find the cause of this problem and try to solve.

    This happens usually if the drivers for the graphics card is not updated correctly. Update your video card driver can often solve these problems. A driver is software that each device has to work with your PC. Here are the measures that take that might help to solve the problems of video card.

    I suggest you to see the following links for more information:

    Troubleshoot video card
    http://Windows.Microsoft.com/en-us/Windows-8/find-install-display-drivers

    Get the best display on your monitor
    http://Windows.Microsoft.com/en-in/Windows-8/get-best-display-monitor

    You can also see this Microsoft article:

    http://Windows.Microsoft.com/en-us/Windows-10/troubleshoot-screen-flickering

    Let us know the update after trying the steps above.

  • Re: How secure cloud creative error message saying: Installation failed and the error message ex20?

    I just got this from Adobe support.  Close all windows and start with a new browser window.  Go to < www.prodesigntools.com >.  On the right side of the window, there will be a small box labeled «direct download links»  Click on 'New CC 2015' and when it starts to download cancel the download.  Then, right-click on the "Lightroom 6/CC" link and open in a new tab scroll down until you find "BOLD" topic "Adobe Lightroom 6/CC direct download links" and then click on the link for the version you want to download, Windows or Mac OS.  It's a slow download, maybe 2 hours or more depending on your speed of connection and internet download.  When the download is complete, you will need to extract the files and install the program.

    It is 22:00 Tuesday evening, and I am downloading right now in the Middle, waiting for results.  I would like to hear the techie I spoke with tonight some time tomorrow and I will let him know if it worked.

    Seems to me that this should be the method of downloading the program from the beginning, instead of all jump them through hoops and making many phone calls after he did get any help or advice on the site.  I've been playing with this for three days and finally have little hope to get the program on my computer.  Good luck, I hope this help anyone.

    I don't have a screenshot of the error message, cannot find version

    Lightroom, I installed now, and my question was not

    answer online.  I was given instructions by phone and made the

    operation after the end of the telephone conversation.  I also do not have

    enjoy the repetitive requests for confirmation of my post.  Kindly

    stop asking for more information, I have given you

    sufficient data and given an adequate explanation.  Thank you.

    The game, 09:46, 4 August 2016, Jeff A Wright [email protected]>

Maybe you are looking for

  • Re: How to get a boot disk out of date?

    I was given a computor with a friend. Now, it does not illuminate and indicates that I have to get the boot disk, then press 'r '. I was on the site of Toshiba Europe and it say this serial number - 93854472G - is now obsolete. I live in New Zealand,

  • Central processing unit

    I have HP Elite E9120y with pegatron Motherboard & HDX910WFK4DGI CPU AMD Phenom II, the CPU went wrong & should be replaced. I was wondering if the motherboard supports AMD Phenom II X 4 955 CPU (HDZ955FBK4DGM) or

  • OfficeJet 6500 709n all-in-one

    After that download the drivers for the all-in-one, which is installed on a network (of two) with an ethernet cable connecting the printer to the router (NOT a computer), the installation is unable to complete, asking that the cable be connected to t

  • sites of private email?

    Is there such a thing as truly private e-mail sites?

  • text of triming and show output

    Dear SirI need to write a complex sql for that need your help.In the column where the value returned in text format, it a great statement. The output I need to filter an integer value that is length of 20 digits and I know just the beginning of it's