How to impliment executable files as a sub vi

I am runnig Labview 2012 on a windows machine do collect data from a measurment probe.
I have several C programs written for data analysis that I manually execute after the data is taken. My question is this: Is there any wat to impliment an external executable file in Labview (perhaps as a sub vi?) for the purpose of streamlining data analysis?
To give an example, one ececutable cleans noise from a set of data in a very specific way.

Try system exec.
(If you have access to the actual C codes, you can compile them into dlls that you can incorportate into LabVIEW.)
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • How to ZIP the files and folders/sub folder files using java

    HI All,
    I'm New to this Forum, Could anybody tell me how to zip the files and folders/sub folders using java. For example I have a folder with the name testfolder and side that folder I have some files and some sub folders inside subfolders I have some other files. I need to ZIP the files and folders as they are in same hierarchy.
    Any pointers or help wolud be appritiated.
    Thanks,
    Rajeshbabu V

    [http://www.devx.com/tips/Tip/14049]

  • How to make executable file in labview.

    HI All,
    I have labview student edition V14 (2014),
    I want my vi to be an executable file.
    i searched in google but in  my vi project  its showing only  build specefication->new->source distrubtion.
    i dont have Application , now how to make an executable file.
    Regards
    Punith

    You need the Professional version to make an executable.  You could also buy the App Builder seperately.  I don't remember the price at the top of my head.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to Start Executable Files from JavaTM Applications?

    If it is possible to start other executable files, for example EXE or BAT, from a Java application, how can it be done in VC++??
    I can invoke executables (or whatever your OS is willing to execute) via Runtime.exec(). as per JDC member mtj or perhaps try:
    import Java.lang.*;
    import Java.io.*;
    public class RuntimeExecTest {
    public static void main(String[] args) {
    Runtime rt = Runtime.getRuntime();
    String[] callAndArgs = { "Notepad.exe",
    "D:\\TEMP\\Test.txt" };
    try {
    Process child = rt.exec(callAndArgs);
    child.waitFor();
    System.out.println("Process exit code is:
    " + child.exitValue());
    catch(IOException e) {
    System.err.println(
    "IOException starting process!");
    catch(InterruptedException e) {
    System.err.println(
    "Interrupted waiting for process!");
    But in VC++ on of the method signature is causing the problem:
    public Process exec( String command, String envp[] ) throws IOException
    If I use the above code, I get this error:
    Compiler Error J0122
    Exception 'identifier' not caught or declared by 'identifier'
    Please help
    Thanks

    Yes, it is possible to run both EXEs and BATs with exec().
    I also suggest you to look at the following article:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • How to Create Executable file for a project for Crio Platform

    hi,
    i am using CRIO 9014  platform  for my application development.
    i am controlling (   Reset  &  then Run )  FPGA   from RT application .
    Through TCP/IP  communication the  Acquired data  (   from FPGA  then followed by some Computation Logic in RT )   is sending   to HOST computer .
    during the above process  
    First i am starting the RT Application    (  the TCP  network will be continuously in listen mode )    then
     i am  starting my HOST Application   in the project .
     here i want  to build my complete project as an  executable file 
    so that i no need to start  RT Application first and then HOST Application.
    Could you please send me One sample Project           with built in simple  ADC Acquisition  loop /  logic  in FPGA  ,  then  one sample logic  / while loop   in RT   to   acquire  this ADC data from FPGA and  send to HOST    via  TCP/IP network then   the  HOST   with GUI    for  Display in the HOST .
    This  complete project should be build in  .exe  file .
    Please  complete project  files  and .exe file    as a  zip file.
    Regards,
    Venkat

    Hi,
    I might be confused but what I understand from what you have mentioned is that you want to create a project having two VI's. One running on your FPGA target and another running on you host computer.You want to build a single executable file to complete the entire operation.
    Unfortunately you cannot have both VI's in same executable file. You can build one executable file and deploy on your FPGA target that will start running as soon as the target is booted. And you can create another executable file for running VI on your host computer. And instead of using TCP to transfer data, you could use "Interface FPGA" from FPGA module to communicate between your host computer and communicate.

  • How to run executable files via ProcessBuilder existing in another drive??

    hi,
    I was using Runtime Class to execute other programs through my application but as I'm using j2se 5 I want to make use of ProcessBuilder Class and utilize its some added features. I wanted it to run my .bat file located in some other folder than the current class file it is showing me IOException. I'm running a class file that is in the folder D:\CyberStation\classes\build\ and I want to execute the .bat file located in D:\CyberChat\build\. Any suggestion is appreciated...
    regards,
    Jay

    The following code was for the .bat file located in the same directory where I am running my .class file:
    ProcessBuilder pb=new ProcessBuilder("cmd.exe","/C","registry.bat");
    Process p=pb.start();Now what I wonder is what are the things that I need to change to make it capable of running .bat or any other executable file in some other directory. I tried:
    ProcessBuilder pb=new ProcessBuilder("cmd.exe","registry.bat");
    File basedir=new File(File_name.class.getResource(File_name.class.getName()+".class").getFile()).getParentFile().getParentFile().getParentFile().getParentFile();
    pb.directory(basedir+"CyberChat\build");
    Process p=pb.start();but didn't success.

  • How to create executable file in labview 6.0

    i have a labview VI file in 6.0 and now i need to create an executable file for that VI.

    The Application Builder is an add-on package to LabVIEW and is available from National Instruments. You can use the LabVIEW Application Builder to create stand-alone executable programs, so that you do not need a copy of the LabVIEW development environment to run them. The Application Builder ships with the LabVIEW Professional Development System, but it may be purchased separately if you own the LabVIEW Base Package or the LabVIEW Full Development System.
    This URL will help you determine if you have App Builder:
    http://www.ni.com/support/labview/toolkits/appbuild/
    This URL will step you through creating an executable:
    http://zone.ni.com/devzone/conceptd.nsf/webmain/4EF810EE05BEF63C86256BF30062EC31?opendocument
    Let me know if you need more help.

  • How should i execute file transfer via batch job scheduling

    Hi guys,
        i want to call unix transfer script via batch job scheduling. Executing the system commands witin ABAP is as below:
             DATA: BEGIN OF ITAB occurs 0,
                         LINE(200),
                        END OF ITAB.
            UNIXCOMM = '/usr/sap/trans/data/*******'
            CALL 'SYSTEM' ID 'COMMAND' FIELD UNIXCOMM
                    ID 'TAB'     FIELD itab-sys.
    Now i plan to assign application server ('Exec Target') to it and let it implement in the background.
      Should i do it via batch job?
    Any info is appreciated very much.

    Instead of using
    CALL 'SYSTEM' u can use FM..
    SXPG_COMMAND_EXECUTE  .. in which u have to pass a command name which u can create or get from SM49...
    In CALL 'SYSTEM' .. u can not catch exceptions.. but in FM given above u can check
    SY-SUBRC, STATUS and EXITCODE  for successful  command execution..
    for successful command execution..
    sy-subrc = 0
    STATUS = 'O'  " Capital O
    exitcode = 0
    For batch scheduling, you can use this FM in a report  with one parameter for additional parameter which u need to pass to this FM  and create a JOB for that report and schedule it..
    I've used it and  find it useful even for batch scheduling..
    Reward if useful
    Regards
    Prax

  • How can native executable files be started from within a Java application.

    Hi Everyone,
    I am currently working on an application that will have the ability to start a program within Windows. What I intend on having is a button within my GUI that can start Microsoft Word. I am completely lost as to where I should begin in order to make this work. If anybody has any pointers they will be greatly appreciated. Thanks.
    Regards
    D

    Hi ,
    easy:
    Runtime.getRuntime().exec(new String[]{path,name});
    see:
    http://java.sun.com/j2se/1.3/docs/api/java/lang/Runtime.html
    HTH

  • Executing file on other server

    Can anyone please guide how can we execute file locating on a different server.
    Regards,
    Shantanu R. Godbole

    Hi,
    Please can you explain how..
    Regards,
    Shantanu R. Godbole

  • How do i change the access rights for every file in every sub-folder?

    I have an external drive that was shared between my PC and my iMac (running Snow Leopard 10.6.5).
    Some of the files created by my PC have the following access rights (privileges):
    Me: Custom
    staff: Custom
    everyone: Custom
    I want every file to have the following access rights (privileges):
    Me: Read & Write
    staff: Read & Write
    everyone: Read & Write
    I presume that I need to go into the terminal and run some command line program, but I have no idea what program or what options (or even where to look for such a program). Can someone tell me how to do this, so that every file in every sub-folder has the same access rights?

    Well, that's different. Most people do not install anything on their PC to read an HFS+ disk, so I assumed it was formatted for the PC. [See my above post|http://discussions.apple.com/thread.jspa?messageID=12843313#12843313].
    Note that it is the same as what you asked about, except with numbers instead of the letter equivalents.
    Posix permissions are for User;Group;Other (ugo) and each one can have read/write/execute permissions. Read = 4, Write = 2, and Execute = 1. So, for rwx you set 421=7.
    I try to make it safe by not typing in the file path. If you do what you posted, you will change the startup volume's permissions. The path to your external is /Volumes/ext hd mount point. If you start typing the path and accidentally hit return before finishing the full path, you could fubar something you didn't want to. So, I type the command, leave a space, and then drag the target to the Terminal window.
    You might also consider the GUI based permission changing program, [BatChmod|http://www.macchampion.com/arbysoft/BatchMod/Welcome.html].
    Message was edited by: Barney-15E

  • How can i execute that sub menu through Acrobat javascript

    Hi,
    I want to open multiple .pdf files in Acrobat Professional 9 enable the menu item which is
    in Advanced -> Extend Features in Adobe reader.
    "Extend Features in Adobe reader." is a sub menu in "Advance"  menu item.
    How can i execute that sub menu through Acrobat javascript

    Hi,
    The Scripting code is mentioned below:
    var q = app.trustedFunction(
        function ()
             app.beginPriv();
             app.execMenuItem("DIGSIG:UBDoc");
             app.endPriv();
    try{
    q();
    catch(e){
    app.alert("Invalid Menu Item\nPlease Contact the SysAdmin");
    But its not working. Please help me.
    Thanks,
    Christy

  • How to convert the javasource file(*.class) to execute file(*.exe)?

    How to convert the javasource file(*.class) to execute file(*.exe)?
    thank you!

    Although i have seen a few programs (that are platform specific) that will embed a small jvm into an exe with your class file, it is generally excepted that you cannot create an executable file using java. The JAR executable file is probably the closest your going to get
    Pete

  • How to create an executable file by including my C# project and database(SQL) in visual studio ?

    Hi,
         I had developed a project in visual studio c# and my database in SQL server. How can i create a executable file including both. 
    can any one give me a solution for this.
    I am trying to make executable in installshield.
    Thank you

    Hi,
    Try to use custom actions to call some managed method, execute the SQL script to create and initialize the database in the method.
    Check this article, it should be helpful for you to create the script and installation:
    https://msdn.microsoft.com/en-us/magazine/cc163919.aspx#S2
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I run a Local PC executable file from Enterprise Portal?

    I want to run local PC executable files from inside the portal. To be more specific I want to be able to open the Outlook and some powerbuilder executable applications.
    How can I do it?

    If you absolutely want to do it, you can use vbscript for it (though there are a lot of security contstraints)
    See Re: Displaying office programs

Maybe you are looking for

  • Weblogic 10.3.5 performance problem

    Hi. I'm using a weblogic 10.3.5 as a test server (We deploy there the applications before going into production). The problem is that after a certain amount of deploys, the server becomes slower and slower until its mandatory to reestart because it c

  • IPhone 5 isn't recognized by Macbook Pro and/iTunes 11.1.3

    Hey guys, I recently updated my Macbook Pro's software to OS X 10.7.5 and iTunes to 11.1.3 and never had problems with syncing my iPhone 5. However, the other day my computer was having problems syncing the music, only syncing certain songs (even tho

  • Pages not loading properly?

    opening up www.trident-gaming.net when i open a thread i get half of my screen black ive tried re installing and installing different versions of firefox

  • ISQL Plus on release 9.2.0.4.0

    Hello Alison et al, we have the version 9.2.0.4.0 installed on our machines, (64 bit version) but we do not have installed iSQLPLus. (or so it seems). We need to download it, is it possible to have a separate installation to install the web based iSQ

  • HT3978 There is no link to downloadable software on my Account Page.

    There's no "downloadable software" link on my account page. How do I download the component? I already bought it. It doesn't show up in my order history because it was over 18 months ago. Very annoyed, how do i get it. Thanks.