Getting the error 2 crash for example finder LV2013 SP1

I've not seen this since LV 8.0. I don't remember how I fixed it. Help > find examples gives me this. I didn't have this problem until I've just upgraded to SP1. I think so. Thanks in advance.

I'm tired to dicking with this problem, so I just copied the BIN > 1.0 files from a machine to work on non-working machine.

I really, really hate to do this. If my example finder .exe missing what could miss?

Two (8.5 and 2013) attempts to repair, two uninstall (2014 and 2013) and reinstalling did not fix this problem. A simple copy and paste a folder made.

Tags: NI Software

Similar Questions

  • Adobe Standard 9.5.2 after update I get the error "insufficient data for an image.

    After the update to Acrobat Standard and devoid 9.5.2, some (but not all) of my pdf files are now open with the error "Insufficient data for a picture." Open files, but they are blurred, pixelated and are missing from the character Ben I applied earlier (by using a utility of LexisNexis Casemap). Fine, I can open the files on another computer with Acrobat Standard 9.5.1.

    How can I uninstall the 9.5.2, or make it work again?

    Acrobat engineering wishes to inform users facing this problem that the latest version of the player (available for download on http://get.adobe.com/reader) XI solves this problem. Users are advised to download the latest version as soon as possible to avoid encountering this error in the future. As mentioned, the team is working hard to solve the problem in earlier versions (10.x and 9.x) as well and plans to deliver a solution by Q1 2013.

    For more information, please see our KB document for this issue:http://helpx.adobe.com/acrobat/kb/insufficient-data-image.html

    Post edited by: David Kastendick

  • Get the error not defined for the current document in the script

    I get a "error number: 2" "error string: myDoc is not defined" in my script.

    I modified a few scripts so that they cross my entire book and open each section (document) in my book, and run the code for each section.ext

    The code runs great and opens and closes the sections where it does not add links to text, but once, it opens a document and view text that you CAN add links, it generates this error.  Here is my code:

    main();
    exit();
    
    function main() {
        var myBook = app.activeBook,
                myDocs = myBook.bookContents.everyItem().getElements(),
                myDoc,
                myHyperlinkStyle,
                myCount = 0;
    
        for (var i=0; i< myDocs.length; i++) {
            myDoc = app.open(File("\\\\computerOnNetwork\\c$\\Folder\\" + myDocs[i].name));
            myHyperlinkStyle = myDoc.characterStyles.item("linkstyle");
    
            try {
                var script = app.activeScript;
            } catch(err) {
                var script = File(err.fileName);
            }
            var myScriptFolderPath = script.path;
            var myFindChangeFile = new File(myScriptFolderPath + "/SearchTextAndUrls.txt"); //mac path for users desktop //File.openDialog("Choose the file containing the tab separated list"); 
            //alert(myFindChangeFile)
            myFindChangeFile = File(myFindChangeFile);
            var myResult = myFindChangeFile.open("r", undefined, undefined);
            if(myResult == true){
                app.findTextPreferences = NothingEnum.nothing;
                app.changeTextPreferences = NothingEnum.nothing;
                //Loop through the find/change operations.
                do {
                    //read 1 line into myLine
                    myLine = myFindChangeFile.readln();
                    myFindChangeArray = myLine.split("\t");
    
                    //The first field in the line is the value to find 
                    myFindVal = myFindChangeArray[0];
    
                    // second is the url
                    myFindUrl = myFindChangeArray[1];
    
                    doSearchAndReplace(myFindVal, myFindUrl, app.activeDocument);
    
                } while(myFindChangeFile.eof == false);
                    myFindChangeFile.close();
                    // reset search
                    app.findTextPreferences = NothingEnum.nothing;
                    app.changeTextPreferences = NothingEnum.nothing;
            }
            alert("Done! " + myCount + " hyperlinks have been added.");
    
            myDoc.close();
        }
    }
    
    function doSearchAndReplace(stringfind, urlstring, searchin) {
        app.findTextPreferences.findWhat = stringfind;
    
        //Set the find options.
        app.findChangeTextOptions.caseSensitive = false;
        app.findChangeTextOptions.includeFootnotes = false;
        app.findChangeTextOptions.includeHiddenLayers = false;
        app.findChangeTextOptions.includeLockedLayersForFind = false;
        app.findChangeTextOptions.includeLockedStoriesForFind = false;
        app.findChangeTextOptions.includeMasterPages = false;
        app.findChangeTextOptions.wholeWord = false;
    
        var myFoundItems = searchin.findText();
    
        for (i = 0; i < myFoundItems.length; i++) {
            var myHyperlinkDestination = myMakeURLHyperlinkDestination(urlstring);
            myMakeHyperlink(myFoundItems[i], myHyperlinkDestination);
            myFoundItems[i].applyCharacterStyle(myHyperlinkStyle, false);
            myCount++
        }
    }
    
    function myMakeHyperlink(myFoundItem, myHyperlinkDestination){
        try {
            var myHyperlinkTextSource = myDoc.hyperlinkTextSources.add(myFoundItem);
            var myHyperlink = myDoc.hyperlinks.add(myHyperlinkTextSource, myHyperlinkDestination);
            myHyperlink.visible = false;
        }
        catch(myError){
        }
    }
    
    function myMakeURLHyperlinkDestination(myURL){
        //If the hyperlink destination already exists, use it;
        //if it doesn't, then create it.
        try{
            var myHyperlinkDestination = myDoc.hyperlinkURLDestinations.item(myURL);
            myHyperlinkDestination.name;
        }
        catch(myError){
            myHyperlinkDestination = myDoc.hyperlinkURLDestinations.add(myURL);
        }
        myHyperlinkDestination.name = myURL;
    
        //Set other hyperlink properties here, if necessary.
        return myHyperlinkDestination;
    }
    

    Any help is greatly appreciated!

    That ends up being my fixed/final code:

    main();
    exit();
    
    function main() {
        var myBook = app.activeBook,
                myDocs = myBook.bookContents.everyItem().getElements(),
                myDoc,
                myHyperlinkStyle;
    
        for (var i=0; i< myDocs.length; i++) {
            myDoc = app.open(File("\\\\computerOnNetwork\\c$\\Folder\\" + myDocs[i].name));
            myHyperlinkStyle = myDoc.characterStyles.item("linkstyle");
    
            try {
                var script = app.activeScript;
            } catch(err) {
                var script = File(err.fileName);
            }
            var myScriptFolderPath = script.path;
            var myFindChangeFile = new File(myScriptFolderPath + "/SearchTextAndUrls.txt"); //mac path for users desktop //File.openDialog("Choose the file containing the tab separated list");
            //alert(myFindChangeFile)
            myFindChangeFile = File(myFindChangeFile);
            var myResult = myFindChangeFile.open("r", undefined, undefined);
            if(myResult == true){
                app.findTextPreferences = NothingEnum.nothing;
                app.changeTextPreferences = NothingEnum.nothing;
                //Loop through the find/change operations.
                do {
                    //read 1 line into myLine
                    myLine = myFindChangeFile.readln();
                    myFindChangeArray = myLine.split("\t");
    
                    //The first field in the line is the value to find
                    myFindVal = myFindChangeArray[0];
    
                    // second is the url
                    myFindUrl = myFindChangeArray[1];
    
                    doSearchAndReplace(myFindVal, myFindUrl, app.activeDocument, myDoc, myHyperlinkStyle);
    
                } while(myFindChangeFile.eof == false);
                    myFindChangeFile.close();
                    // reset search
                    app.findTextPreferences = NothingEnum.nothing;
                    app.changeTextPreferences = NothingEnum.nothing;
            }
            alert("Done! Hyperlinks have been added.");
    
            myDoc.close();
        }
    }
    
    function doSearchAndReplace(stringfind, urlstring, searchin, myDoc, myHyperlinkStyle) {
        app.findTextPreferences.findWhat = stringfind;
    
        //Set the find options.
        app.findChangeTextOptions.caseSensitive = false;
        app.findChangeTextOptions.includeFootnotes = false;
        app.findChangeTextOptions.includeHiddenLayers = false;
        app.findChangeTextOptions.includeLockedLayersForFind = false;
        app.findChangeTextOptions.includeLockedStoriesForFind = false;
        app.findChangeTextOptions.includeMasterPages = false;
        app.findChangeTextOptions.wholeWord = false;
    
        var myFoundItems = searchin.findText();
    
        for (i = 0; i < myFoundItems.length; i++) {
            var myHyperlinkDestination = myMakeURLHyperlinkDestination(urlstring, myDoc);
            myMakeHyperlink(myFoundItems[i], myHyperlinkDestination, myDoc);
            myFoundItems[i].applyCharacterStyle(myHyperlinkStyle, false);
        }
    }
    
    function myMakeHyperlink(myFoundItem, myHyperlinkDestination, myDoc){
        try {
            var myHyperlinkTextSource = myDoc.hyperlinkTextSources.add(myFoundItem);
            var myHyperlink = myDoc.hyperlinks.add(myHyperlinkTextSource, myHyperlinkDestination);
            myHyperlink.visible = false;
        }
        catch(myError){
        }
    }
    
    function myMakeURLHyperlinkDestination(myURL, myDoc){
        //If the hyperlink destination already exists, use it;
        //if it doesn't, then create it.
        try{
            var myHyperlinkDestination = myDoc.hyperlinkURLDestinations.item(myURL);
            myHyperlinkDestination.name;
        }
        catch(myError){
            myHyperlinkDestination = myDoc.hyperlinkURLDestinations.add(myURL);
        }
        myHyperlinkDestination.name = myURL;
    
        //Set other hyperlink properties here, if necessary.
        return myHyperlinkDestination;
    }
    
  • It would not be possible to charge students licensed CS4 on a new computer? I get the error message "License for this product has stopped working": 150:30

    I bought a newer and faster apple.  It won't be possible to recharge my CS4 Design Premium student license version?

    Is the student license a perpetual license? Is its use related to my maintaining student status?  In other words, can I still use the software

    When I'm not a student anymore?

    You must uninstall, clean and reinstall then by use the CC cleaning tool to resolve installation problems. CC, CS3 - CS6

    but you will need your serial number to reinstall and activate.

    Refer to:

    Concerning

    Baudier

  • When you run sfc/scannow, using i386, getting the error "files required for Windows to run correctly have been replaced by unrecognized versions.»

    When I run the sfc/scannow, I get a message telling me "files which are required for Windows to run properly have been replaced by unrecognized versions." To maintain stability, Windows must restore the original versions of these files. Insert your Windows XP Home Edition Service Pack 3 CD now"with options; try again, more information or to cancel.

    A CD came with the computer and I don' t know how, or if I can use the i386 at this stage. contains WINNT i386. EXE, and WINNT32.exe indicating me a full copy of the system.

    If it is doable but requiring a major tech-skills, I will put an end to this attempt and try to find a CD. (old dog, new tricks)

    Thanks for any advice.

    Hello

    Please go through this page.

    http://www.updatexp.com/scannow-SFC.html

    Thank you

    Dinesh

    You can vote if my answer is helpful. Thank you

  • When you try to remove programs or update something, I get the error message that it cannot find the windows installation program and its usually due to installer is not properly installed.

    I was in Add or remove programs and try to delete a program and he said that he could not reach the RPC and or the installer of windows are not accessible due to the windows installer is not installed properly.

    How to re-install Windows Installer:
    http://xphelpandsupport.MVPs.org/how_do_i_reinstall_the_windows_i.htm

    Windows Installer 3.1 Redistributable (v2)
    http://www.Microsoft.com/downloads/details.aspx?FamilyID=889482fc-5f56-4a38-b838-de776fd4138c&displaylang=en

    Windows install 4.5 Redistributable
    (Latest version of Windows Installer)
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&displaylang=en

    Update for Windows XP (KB958655-french)
    Install this update to resolve the issue in MSI Installer 4.5
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=e0735d57-03cc-42e5-823e-60c9efe74aac & amp; amp; displaylang = in & displaylang = in

    Also:
    Common problems of Windows Installer
    http://support.Microsoft.com/?kbid=555175

    The Windows Installer CleanUp utility (Note: this link has changed the utility he did).
    http://support.Microsoft.com/kb/290301

    JS
    http://www.PAGESTART.com

    Never be afraid to ask. This forum has some of the best people in the world to help.

  • Get the error code 80070020 for update security update for Windows Vista (KB2588516)

    There have been those

    The ALL NEW NORTON 2012 WHO COMES of OUT JUST DWNLOADED the TOOL MCAFFEE AND the DELETION of OLD FILES. I HAD NORTON FOR ABOUT 2 WEEK TRIAL JUST FOR NOW. YES, MCAFEE HAS EXPIRED BEFORE THAT I PUT NORTON HERE.
    NO DO NOT HAVE THOSE 2 UPDATES THAT I SHOULD BRING?
    KB 2563894 - SAID THAT SHE ONLY WILL NOT APPLY TO MY SYSTEM
    ON THE OTHER KB978886 IT IF NOT APPLY TO MY SYSTEM NO MORE...
    ?

  • Get the error update driver for D110a

    Try to reinstall my HP Photosmart D110 series.

    Cannot install the driver because it is either not digitally signed or not signed appropriately. Contact your hardware vendor.

    This printer was working fine until I went to the window 8.1 it worked for a while then stops.  I can make it work with a USB cable, but it will not install or run wirless

    Hello! Welcome to the @ladyc10432 forums.

    I read about the installation problem that you are experiencing, and I'm here to offer my suggestions!

    I hope that they help him...

    1. First, uninstall the printer from your computer Microsoft Fix It.
    2. Restart the computer.
    3. Perform a clean boot and reboot the PC.
    4. Reinstall the printer by downloading the driver here: drivers and software HP Photosmart full feature.
    5. If necessary, try to run the diagnostic print and Scan Doctor tool to solve printer problems.

    I hope this helps, have a nice day

  • Setup KB967044 error; I get the error code 646 in automatic and manual update update fails so

    I tried to install KB967044 for Microsoft Works 9. Like others, I get the error code 646 for the automatic update. I tried to manually install, but installation requires the CD of Microsoft Works. Now, Works has been installed at the factory, and I do not think that the CD that came with the computer. In any case, I was unable to find such a CD. Disable my firewall has not changed the problem. I use Vista.
    Thank you for your help.

    Contact the manufacturer of your PC to get the drives concerned etc..

    If the update requires the CD and then the CD. TaurArian [MVP] 2005-2010 - Update Services

  • Get the error when running rcu.bat

    Hi all

    After a successful installation on ODI 12 c.

    I am trying to run the rcu.bat but I get the error below.

    "Cannot find the javaw.exe.

    just me to get rid of this error.

    Thanks in advance

    Kind regards

    Fabien Manirao

    HI Vivek,

    JAVA_HOME is a regular path whenever we install JDK in our machine and if it does not support other tools.

    ODI_JAVA_HOME we define as the JDK path even as ODI motor needed Java and backgrond processes for studio ODI

    Kind regards

    Phanikanth

  • I tried to install since 11/12/09 important update KB976098 and continue to get error code 8E5E03FB unknown error. I tried to find the error code, but can't find it. How can I download and install this update?

    I tried to install since 11/12/09 important update KB976098 and continue to get error code 8E5E03FB unknown error.  I tried to find the error code, but can't find it.  How can I download and install this update?

    Quote your full version of Windows (for example, WinXP SP3;) Vista SP1; Vista 64 - bit SP2; Win7; Win7 64 bit) when you post in a forum or a newsgroup. Please do it in your next reply.

    Short story: If you do NOT live in one of the zones listed in http://support.microsoft.com/kb/976098, you really need not to install this security update not any way so you can hide it just ("don't show me this update"). ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Windows Mail JPG attachments get the error message "cannot find... .jpg file.

    Recently, I try to open JPG files in Windows Mail and get an error message window that says that "Windows cannot find"filename.jpg"make sure you typed the name correctly and then try again" I can save the JPG file, then open it, but Windows Mail won't open it by simply clicking on the attachment JPG.

    There has been reports of this behavior with only some files (.jpg or .pdf) and the reports of this problem with each attachment after installing IE8.  Frankly, they are quite few and inconsistent and avisnon there is no clear solution.  Try these two steps in this order.

    1. Use this utility to 'fix' to reset the Security http://support.microsoft.com/default.aspx/kb/949220 settings
    2. Use this utility to re - register a lot of IE http://iefaq.info/index.php?action=artikel&cat=35&id=133&artlang=en important .dll

    There are other actions that must be reported to temporarily fix the problem - move to the location of the internet temportary file, for example.  Another reported a little is to uninstall IE8 and then reinstall it with all the temporarily disabled third-party security software.

    Since you have only this problem with .jpg files, you can try to reset file associations for .jpg.  Open an administrator command prompt (right click on cmd in the start menu and choose "Run as Administrator").  In the administration command prompt window, type the following lines exactly as shown:
    Assoc .jpg = jpegfile

    Assoc .jpeg = jpegfile

    ftype jpegfile=%SystemRoot%\System32\rundll32.exe "%ProgramFiles%\Windows Photo Gallery\PhotoViewer.dll", ImageView_Fullscreen %1

    Steve Hebert - MVP Microsoft Internet Explorer

  • I try to install the update of security for Microsoft Office System 2007 (KB972581), but if failed and I get the error code Code 57A__

    I try to install the update of security for Microsoft Office System 2007 (KB972581), but if failed and I get the error code Code 57A

    I have install the 2007 Microsoft Office Suite Service Pack 2

    I bet that if you check the size of the file that has been downloaded it will be probably very small, indicating that it was not downloaded correctly.

    I don't think you have another computer at hand, or a friend with a USB key which may be able to download and copy it for you?  Maybe burn it to a CD or something.

    I could download it and save it to my desktop so I am confident that it is not a problem with the link itself or the file is available for download with success.

    I know this isn't a very good suggestion, but the only other option would be to challenge support and see if a technician can take control of your machine and see if they can solve the problem of internet explore.

    If you find my answer was what you're looking for, remember to click on the box "mark as answer" below!

  • I keep getting installation errors that it can't find some files for installation.

    Original title: How can I stop MSInstaller?  I got errors when reinstalling the CA anti-virus software and it continually seeks to install parts of the show.

    I get installaer error that it can't find some files for installation.  Since she cannot complete the task, I can not install other updates, because he wants the other installation before proceeding with a new.

    Hello
     
    What is the full error message?

    Please follow the steps mentioned below:
     
    Method 1:
    Diagnose and resolve program install and uninstall problems automatically:
    http://support.Microsoft.com/mats/Program_Install_and_Uninstall/
     
    Method 2:
    How to solve the problems when you install or uninstall programs on a Windows computer:
    http://support.Microsoft.com/kb/2438651
  • When you try a yahoo search I get the error message "windows cannot find (web site name) make sure you typed the name correctly.

    Original title: error message

    When you try a yahoo search I get the error message "windows cannot find (web site name) make sure you typed the name correctly.

    Hello

    ·         What web browser do you use?

    ·         Would which site you find?

    ·         The issue is that with Yahoo search?

    ·         Exactly how you try to search? Web site or toolbar in Internet explorer?

    You try to use the Bing search engine to search for Web pages online. To access Bing search engine type www.bing.com in the address bar. Please provide us with more information about the issue to help you further.

Maybe you are looking for