Adding Signal Processing vi to application causes exe not to work

I am having a problem with building an exe that I hope someone can help me with.
I have a LV2010 (10.0.1) project that I a build into an exe. This has worked fine and the exe works as it should.
My problem starts when I add a vi.lib (Extract Single Tone Information) vi to the code to calculate the detected frequency of a vibration signal. I can run the application in Labview without any problems.
When I try to build the executable I get an error:
This is the full error message: 
Visit the Request Support page at ni.com/ask to learn more about resolving this problem. Use the following information as a reference:
Error 1502 occurred at AB_Source_VI.lvclass:Close_Reference.vi -> AB_Build.lvclassave.vi -> AB_Build.lvclass:Copy_Files.vi -> AB_Application.lvclass:Copy_Files.vi -> AB_EXE.lvclass:Copy_Files.vi -> AB_Build.lvclass:Build.vi -> AB_Application.lvclass:Build.vi -> AB_EXE.lvclass:Build.vi -> AB_Engine_Build.vi -> AB_Build_Invoke.vi -> AB_Build_Invoke.vi.ProxyCaller
Possible reason(s):
LabVIEW: Cannot save a bad VI without its block diagram.
After searching through the message boards I found that I could enable debugging in the Build Specifications and that would allow LV to compile the exe without error:
But the next problem is that the exe cannot run:
I am stuck now. The exe does not run on my development machine. Am I missing some dll files that are needed because of the Extract Singal Tone Information.vi?
Any ideas would be greatly appreciated.
Thank you.

I have managed to fix this problem.
I am posting my solution here for anyone that might run into something similar.
It turned out to be a strange problem to solve.
first I tried to create an executable using only the Basic Single Tone Measurement.vi as suggested. This I could build and run without any problem.
This showed that the vi was not the problem but rather something in my project.
Next I tried various ways to build the project with the Basic Single Tone Measurement.vi placed at different locations in the project. But nothing worked.
What finally resolved this problem was that I deleted a subvi that had originally contained an fft vi inside a true/false statement that was wired to a constant (to disable it). Even though the fft vi had been long since deleted and the conditional statement as well then for some reason the project would not build correctly when I placed the Basic Single Tone Measurement.vi anywhere in it.
To summarize. I deleted a subvi that had previously contained a vi to calculate the fft and eigen frequency and placed the Basic Single Tone Measurement.vi in the top vi. This solved the issue and I could build and run the exe without any problems.

Similar Messages

  • With Windows Vista, the most recent Itunes update 1/30/2014 has caused Itunes not to work, with a Mscvr80.dll not found error. Uninstalled all Apple programs, and installed fresh Itunes. Same problem. Tried to reinstall using an older install exe nogo

    Recent ITunes update has caused ITunes not to work. Tried uninstalling all Apple products and reinstalling fresh. Still doesn't work. Tried reinstalling from an old install.exe. Install went nicely but program won't start as it says it can't open the library file.

    Now that I have no way of accessing any of the products I have purchased from ITunes, I will most certainly never use ITunes again for any reason. Why throw good money after bad?  I will use another MP3 player that is not as cumbersome or proprietary.
    Lesson learned.

  • When trying to update to 4.0.1 it locks up when checking for updates do plug-in. This causing Firefox not to work. Why?

    When trying to update to 4.0.1 it locks up when checking for updates to plug-in. This causing Firefox not to work. Why?
    I am running windows 7. I have tryed uninstalling and reinstalling and every time it locks up at the same point, when it is checking for updates to plug-ins. I have run troublt shooting and it tels me :Incompatible Application. Why??

    Create a new profile as a test to check if your current profile is causing the problems.
    See:
    * [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting: Make a new profile]]
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins"
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See:
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Adding sound to buttons causes then not to work.

    I have a flash project with 3 buttons in each frame 1 button is the correct answer and two are not
    here is the code
    import flash.events.Event;
    btnA.addEventListener(MouseEvent.CLICK, checkCorrectness);
    btnB.addEventListener(MouseEvent.CLICK, checkCorrectness);
    btnC.addEventListener(MouseEvent.CLICK, checkCorrectness);
    function checkCorrectness(e: Event): void {
      if (e.target == btnA) {
      if (correctA) {
      totalscore++;
      } else if (e.target == btnB) {
      if (correctB) {
      totalscore++;
      } else if (e.target == btnC) {
      if (correctC) {
      totalscore++;
      score.text = totalscore;
      if (totalscore == 18) {
      gotoAndStop(21);
      return;
      nextFrame();
    stop();
    var totalscore = 0;
    var correctA:Boolean = false;
    var correctB:Boolean = false;
    var correctC:Boolean = false;
    score.text=totalscore;
    each frame has this code below with the correct answer changing from frame to frame
    correctA = true;
    correctB = false;
    correctC = false;
    all works fine but now I have to use sound in the buttons so I duplicated a button and changed the name of one button to "true" and the original I changed to "false".
    I added  in each of the two new button names a sound effect ( sound 1 for button true and sound 2 for button false)
    So the frame list looks like this
    frame 1
    correctA = true;
    correctB = false;
    correctC = false;
    button name 1 true instance name btnA
    button name  2 false instance name btnB
    button name 3 false instance name btnC
    frame 2
    correctA = false;
    correctB = true;
    correctC = false;
    button name 1 false instance name btnA
    button name 2 true instance name btnB
    button name 3 false instance name btnC
    according to this each correct button would trigger sound1 telly the score and move to the next frame
    and each incorrect button would also tally the score and move to the next frame.
    Not all selections are making the frame move nor the score tally.
    any help.
    ALL OF THIS WORK FINE WITHOUT THE SOUND AND THE BUTON NAMES CHANGED. SO THE RESULT IS I ONLY HAVE A WORKING FILE BUT WITHOUT THE SOUNDS FOR EACH BUTTON.
    R

    Great works like a charm, one thing though. Every time I click the Incorrect button button I hear that audio twice . I checked the actual mp3 and it just one sound.
    Heres the code you gave me
    var correctSound:CorrectSound=new CorrectSound();  // assign this class
    var incorrectSound:IncorrectSound=new IncorrectSound();  "  "
    function checkCorrectness(e: Event): void {
      if (e.target == btnA) {
      if (correctA) {
      totalscore++;
    soundF(true);
      }else{
    soundF(false);
      } else if (e.target == btnB) {
      if (correctB) {
      totalscore++;
    soundF(true);
      }else{
    soundF(false);
      } else if (e.target == btnC) {
      if (correctC) {
      totalscore++;
    soundF(true);
      }else{
    soundF(false);
      score.text = totalscore;
      if (totalscore == 18) {
      gotoAndStop(21);
      return;
      nextFrame();
    function soundF(b:Boolean):void{
    if(b){
    correctSound.play();
    } else {
    incorrectSound.play();

  • 10.1.2.3 patch causes webutil not to work.

    I had 10.1.2.2 Developer Suite working with webutil. Then we applied the 10.1.2.3 patch. Now webutil does not work. I read metalink and it said to use jacob_1.10.1.zip. I did that. I also got the frmwebutil from webutil.2.2.zip. I signed both jacob.jar and frmwebutil.jar. I also overwrote the jacob.dll with the new jacob.dll. I recompiled a previously working webutil form. When I run the form I get this... Remember, this all worked before I applied the patch.
    Reading certificates from 141303 http://dxmooisaf:8889/forms/java/frmall.jar | C:\Documents and Settings\mreichman\Application Data\Sun\Java\Deployment\cache\6.0\63\f488f7f-7d1a1920.idx
    Reading certificates from 141303 http://dxmooisaf:8889/forms/java/frmall.jar | C:\Documents and Settings\mreichman\Application Data\Sun\Java\Deployment\cache\6.0\63\f488f7f-7d1a1920.idx
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Reading certificates from 141303 http://dxmooisaf:8889/forms/java/frmall.jar | C:\Documents and Settings\mreichman\Application Data\Sun\Java\Deployment\cache\6.0\63\f488f7f-7d1a1920.idx
    java.lang.ClassNotFoundException: oracle.forms.webutil.clientInfo.GetClientInfo
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
    .....

    Ok, let me see if I can clear this up.
    1. First from a patching point of view it doesn't matter if you are using Application Server or Developer Suite 10.1.2. The patches are the same for both.
    2. The base release (complete product) is 10.1.2.0.2. Both 10.1.2.2 and 10.1.2.3 represent patched versions of 10.1.2.0.2. All patches are cumulative so it doesn't matter if you got to 10.1.2.3 by way of .2 or .0.
    3. Patch 9593176 is a Forms Bundle Patch intended to be installed on top of 10.1.2.3 only. Refer to Note 1188127.1 for more information about this patch.
    4. If you patched from .0 directly to .3 and skipped .2, it is important that you refer to Note 1058514.1 in order to address a known issue with said path.
    5. As already noted, applying patch 9593176 does require the use of Jacob 1.10.1 if you plan to use the OLE functionality. However, more important is that this patch also includes a replacement for webutil.pll. It is very important that older versions be removed, including its related PLX file. You then need to generate a new PLX using the new PLL.
    Last but never least, is the original issue...
    ...java.lang.ClassNotFoundException: oracle.forms.webutil.clientInfo.GetClientInfo...This error suggests that either the jar file is not being downloaded or the bean is not being identified in the form. The latter is usually the issue and can be corrected by regenerating the FMX and ensuring that you use the compile_all=yes option when doing so. However, I would first recommend that you address the pll info I mention in #5 first.
    If this doesn't correct the issue, then look closely at the java console and see if you note the frmwebutil.jar files as being downloaded. If not, then it is likely missing from your archive entry or not being picked up for some reason and this is the cause of the problem.
    Michael Ferrante
    Senior Principal Support Engineer
    Forms Global Technical Lead
    Oracle Corporation
    Edited by: Michael Ferrante on Mar 29, 2011 3:48 PM

  • Mountain Lion causing apps not to work, how can I downgrade to Lion without Time Machine Back-up?

    Since installing Mountain Lion, I have found applications that don't work.  I want to go back to Mountain Lion, unfortunately I had trouble with my Time Machine back up hard drive a couple days after installing Mountain Lion and I don't have any back up to work from.  Tried to go to App Store and redownload Lion from there under purchases, but I got message that said "You can’t upgrade this version of Mac OS X because a newer version is installed."
    I have another mac that I can download the Lion install package to and then drag it over to this computer, so the question is, Will I be able to re-install Lion over the upgraded Mountain Lion without any problems?

    Babowa - By On Screen, I mean it still shows up in the disk utility and reads the following:
    MATSHITA DVD-R   UJ-898:
      Firmware Revision:    HE13
      Interconnect:    ATAPI
      Burn Support:    Yes (Apple Shipping Drive)
      Cache:    1024 KB
      Reads DVD:    Yes
      CD-Write:    -R, -RW
      DVD-Write:    -R, -R DL, -RW, +R, +R DL, +RW
      Write Strategies:    CD-TAO, CD-SAO, DVD-DAO
      Media:    To show the available burn speeds, insert a disc and choose File > Refresh Information
    There are several links here on the support forums with manyyy others having the same problem: https://discussions.apple.com/thread/4150905?start=30&tstart=0

  • JRE 1.5 update causes code not to work

    OK - I need to understand the relationship between the private JRE in the JDK and the public JRE.
    I let the auto-update function update my 1.4.2 JRE to 1.5 and now my application won't run from the command line (although it will still run from inside NetBeans).
    My real confusion is that my classpath specifies the JRE inside the 1.4.2 JDK as tthe one to use.
    Here's my command line:
    java -classpath c:\JavaCode\IrrigationControl\dist\IrrigationControl.jar;c:\JavaCode\freetts-1.2\lib\freetts.jar;c:\OneWireAPI\lib\OneWireAPI.jar;c:\j2sdk1.4.2_06\jre\lib\rt.jar;%classpath% MainProgram.MainProgramWindow
    I am completely confused. any help would be appreciated.
    Peter

    Thanks,
    I am not trying to use 1.4.2.
    I copied this command line from a Java example and never really understood why it is the way it is. I've read the Java books I have and since they try to be platform independent, they are always vauge on the details of building a windows command line.
    Peter

  • Skype 7.6 causing Chrome not to work

    A few days ago, Skype updated automatically to the latest version (7.6). Since then, I have been experiencing awful issues with Chrome and with Skype itself. --ISSUES WITH CHROME--If Skype is running, any page I load on Chrome won't appear, no matter if it is among my favourites or if I type in the web address myself. Chrome does reach the website, which means the search engine works, but it either doesn't show the page, which means I see Chrome's black background (...the one you see when you're reading PDFs on Chrome for instance) or it shows the actual page for half a second and then it goes back to the said black background. Refreshing the page won't work either. Plus the Adblock Chrome extension keeps crashing. How do I know it's Skype's fault? Because as soon as I quit Skype 7.6 everything goes back to normal! --ISSUES WITH SKYPE--As if this wasn't enough, Skype 7.6 has been having terrible issues also in terms of functionality. As soon as I start running the program, it looks as if it is working, but then, as soon as I start a conversation, the page won't move and I can't see what I've written and what other people have written. Names and conversations only appear (in bits and pieces) if I pass my mouse over them...it's as if Skype was constantly stalling. As of now, Skype is not usable and it's even causing issues to my Chrome.  Any help will be greatly appreciated.

    Try to reset all Internet Explorer settings: http://support.microsoft.com/kb/923737 Next reset LAN settings: Open Internet Explorer. Go to Tools -> Internet Options -> Connections -> LAN settings. Make sure that the only option selected is “Automatically detect settings”. Next clear all Temporary Internet Files: Open Internet Explorer -> Tools -> Internet Options -> General. In the section “Browsing history” press the “Settings” button and in the next window the “View files” button. Delete all files from the Temporary Internet Files folder.

  • Programs The Cause Quicktime Not To Work.

    Hi,
    I'm running Windows Vista Ultimate x64 SP1 with 2GB DDR2 RAM, 160GB HDD, GeForce 9400 GT, AMD Athlon Dual Core 5400+ 2.80 Ghz Processor.
    Quicktime does not work properly for me, it is jumpy and different colors randomly flash. I have followed other instructions in similar posts but they have had no effect.
    I am going to change to Vista Ultimate x32, but before I do that I am wondering if there is any software or hardware that I may have that would cause QT to do this.
    Regards,
    Ben.

    Yes, I have done that.
    I've tried a few different things and none of them have worked, so I'm thinking it must be some hardware and/or software that is causing this to happen.

  • Help, Spry Tabbed Panels are causing links not to work

    Here is the page: http://www.spalutions.com
    Here are the trouble spots:
    Menu at very top of page
    Home | Contact Us | Site Map
    Links within the panels
    Email link at the bottom of the content area
    Any help would be greatly appreciated!

    Fascinating.
    The Validator found three important errors you might fix to see if they help resolve the problem:
    at about line 107:
    <div class="editable"div id="contentWrapper">
    at about line 197:
    <div class="editable" div id="footer2"></div>
    and
    id="footer" twice on page
    After you fix these, run the Validator again: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.spalutions.com%2Findex.html to find any more important issues.
    Then let us know if that helped!
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Cloning tool causes keyboard not to work.

    Every time I use the cloning stamp tool to edit a file, sometimes I hear a piano-like sound and my keyboard won't work.  I have a Mac running Yosemite but even before the upgrade it did that.  I'm using Creative Cloud but had CS4 and it did it with those too.  Is it a glitch?  Is anyone else having this issue?
    Under tags there seems to be a 'cloning stamp bug' choice.  Then I'm not crazy!  So, what's the solution?

    Have you done a Forum search yet?
    What do you have to do to resolve the issue at current?
    What have you done for trouble-shooting so far?
    Please read these:
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325

  • Advanced signal processing toolkit for Version 8.5

    Hi all,
    Please guys help me out. I am looking for the advanced signal processing toolkit for labview 8.5 (not an evaluation ) .
    any help would be appreciated 
    Bill David

    Dear Norbert_B.
    Thanks a lot for your help . But I just cannot find a way to tell you this . I have just installed a newer version of labview ( LAB-VIEW 2009) because I got it from a friend and it has the Advance Signal Processing Toolkit . but have no idea where do i get the Digital Filter design toolkit as well as the biomedical toolkit that suits this version of software. 
    In another word I am just suffering with it . I have an application to build and it needs the digital filter toolkit and the biomedical toolkit . I know that's alot to request ..but I am trying to be honest with you .
    your help was already appreciated.............m loosing my mind
    Bill David
    Bill David

  • RTMPT stops working. Error: Failed to signal process condition: errno(43)

    Using licensed FMIS v4.5.1 r484 x64.
    RTMPT stops working every once in a few days. Restarting FMS fixes the issue. When the problem occurs both RTMP and RTMPT connections generate the following error in master.00.log:
    Failed to signal process condition: errno(43)
    Despite the error RTMP works but RTMPT does not. There seems to be quite a bit of memory released after restarting FMS:
    Before restart:
                 total       used       free     shared    buffers     cached
    Mem:      16426572   13315052    3111520          0     267948    9108452
    -/+ buffers/cache:    3938652   12487920
    Swap:     10217332          0   10217332
    After restart:
                 total       used       free     shared    buffers     cached
    Mem:      16426572    6244816   10181756          0     301292    3124848
    -/+ buffers/cache:    2818676   13607896
    Swap:     10217332          0   10217332
    What does this error mean? Is FMS running out of memory? The server has 16 GB of RAM. There are about 270 vhosts it loads but on average only about 60-100 connections at any time.

    Try downloading and installing the updates to Acrobat, fixing permissions and then running the program.

  • Faulting application crw32.exe,version 11.0.0.895, faulting module crqe.dll

    Hello,
    I am modifying an existing report to inlcude a stored procedure.  The existing report access several tables, link and formulate the fields.  I added the new stored procedure, link it with one of existing tables included in the report, and add a new group summation using the new field returned by stored procedure.  When I run the report with the new changes, the Crystal Report seems processing data for a while (as the SQL profiler shows the stored procedure was executed successfully), then it suddenly crashed.  The complete error message in the event log is "Faulting application crw32.exe, version 11.0.0.895, faulting module crqe.dll, version 11.0.0.1282, fault address 0x000a4d5c".
    Platform informatin:
    - Crystal Report XI version 11.0.0.895
    - SQL 2005
    - Windows 2003 Server
    Any help to narrow down the issue would be highly appreciated.
    Michael

    Hi Michael,
    You are running the base build of crysral report XIR1 would suggest you to apply the latest service pack for crystal reports XIR1.
    Servcie pack can be downloaded from here.
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm]
    You can also upgrade CR XI RI to R2.
    See this thread for upgradation:
    [Crystal Report XI Upgrade Question;
    Regards,
    Shweta

  • Folder of application builder(*.exe) with run-time DLL

    My application consists of main.vi, subvi folder, and example folder.
    In addition, I have to add the run-time libraries for add-on tool kit (advanced signal processing, lvwa.dll) which should be located in the root folder.
    (For exe application, can I set the location of DLLs to not the root folder but "DLL folder"?)
    In my several trials, I can't maintain the hierachy of "example folder".
    Instead of my intension, the NI application builder copied the files in the folder to the support directory.
    Can I locate the "example folder" to the root folder by using NI application builder?
    In summary, I want to get the folder structure by application builder.
    main.exe, DLL folder, Example Folder.
    메시지가 08-08-2008 01:30 AM에 labmaster에 의해 편집되었음

    Hey Labmaster,
    What version of LabVIEW are you using?
    I am not too clear as to what you are trying to do. You can create folders and add anything from your project when creating an installer under the Source Files section in its properties.
    It might be easier if you'd attach a screen shot of what you are doing or trying to do.
    Aashish M
    Applications Engineer
    National Instruments
    http://www.ni.com/support/

Maybe you are looking for

  • DVD Drive disappeared after installing Boot Camp on Windows 8

    I am running Mountain Lion and I bootcamped Windows 8... this is a fresh install. 1. I installed Windows 8 and the DVD is still working 2. I installed Bootcamp software via DVD and was asked to reboot 3. I reboot my iMac 4. Now, my friggin DVD doesnt

  • Feature Request: enhanced Frames handling in DW9

    Handling of frames in DW8 is really tricky. Do it better in DW9 please. (Frames are not "out" they are accepted by search engines and cool to use. Also very userfriendly if set up right.) I frames can inserted in the code but are displayed poorly in

  • Spotlight fails to load, constantly crashes after Time Machine restore

    Problem description: After having made the mistake of running a Unix command that altered more files than I intended and possibly damaged the file system, I decided to restore to a previous state with Time Machine. (By the way I am running Yosemite.)

  • Need help with tree edit distance and restricted top-down mapping algorithm

    *This topic was posted a while ago in "java programming" section but was suggested to try here Hi everyone, A couple of days ago I posted a topic on analyzing structure similarity between two web pages. After some researching, I know I need to work o

  • Oracle10g database migration from MID to MIT

    Dear all, im currently doing the migration from production server (MID) to dev server (MIT). i've use 2 method below but all encounted the error and fail to import. hope some one can point the error and explain the some of my problem. 1. used oracle