Editing SystemExec.vi to wrap up a program

Hi there,
I'm just full of questions today. I'm using SystemExec.vi to run a small, DOS-based external program. I then take the output that's sent to the console and manipulate it a bit.
The problem is, the external program I'm executing does something where the DOS window doesn't close after it's done executing. Because of this, LabVIEW thinks it's still running and does not receive anything in the "Standard Output" string of SystemExec. Is there a command I can use to close the window and terminate the program? Thanks.

"exit" terminates cmd.exe on windows 2000.
ben schulte
national instruments

Similar Messages

  • Does PS CS5 Student/teacher edition qualify me for the Photoshop Photography Program?

      does PS CS5 student/teacher edition qualify me for the photoshop photography program?

    Hi nikonjedimaster
    From the offer terms:
    http://www.adobe.com/store/en_us/popup/offer/ccm_photoshop_app_offer.html
    "This offer is not available to Education, OEM, or volume licensing customers"
    Are you still in education?  We currently have an offer on for Creative Cloud complete for Students/Teachers - http://www.adobe.com/products/discount-software-coupons.html
    Thanks
    Bev

  • Oneway Wrapping  PL/SQL Programs

    Hello,
    I have wrapped my PL/SQL package successfully through wrap utility, but it can be easily unwrapped by some websites like 'http://www.codecrete.net/UnwrapIt' or unwrap mechanism.
    I need one way encryption for my program. Please suggest if there is any alternative.
    Thanks & Regards
    Pritish
    Edited by: 1004790 on Jun 6, 2013 6:11 AM

    No computer program in any language can be encrypted in a way that prevents someone that owns the server on which the code is running from reversing that encryption. The code, after all, has to be sent to the CPU to be executed. You can find sites that unwrap PL/SQL just like you can find tools that will generate C source code for the Oracle executable or the Java source for whatever JAR file you'd like to consider.
    The best you can do is to buy something like PFCLObfuscate that will obfuscate the code before calling the wrap utility (and calling the older version of the wrap utility which is a touch harder to unwrap and for which there are fewer online unwrapping tools). That requires money to buy the tool, though, and it will add complexity to your code management and deployment process since you have to maintain both a readable and an obfuscated version of the code and ensure that the right thing gets deployed and that no one inadvertently causes there to be differences between the two. And an attacker could still unwrap your code and still see exactly what it is doing, it would just be a bit harder to follow.
    Justin

  • Editi an existing function module though a program

    Hi All,
    Is there any to edit the existing code and/or parameters of an existing function module through another program.
    Is there any FM known or any other technique ?
    Please let me know.
    Thanks in advance,
    Archana

    Try transaction WE57 (assigning a function module to a logical message and IDoc type. In your case it should be function module
    BAPI_IDOC_INPUT1 (a more generic function module).

  • Every time I click on photoshop edit I get a message that the program has crashed. I' ve been using photoshop elements for two years and nothing on my computer has changed. My software was downloaded and I have no disk.

    WHat can I do to make the program work as it has before?

    Very Important, how much Free Space is on your Hard Drive first of all? Click on the Macintosh HD on the Desktop, then do a Get Info on it.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Do they launch OK while in Safe Mode?

  • Why I cannot edit and updat tree node in this program??

    Dear Friends:
    I have following code, it can be run ok,
    I set it editable, I hope to edit at run time, but looks like I cannot edit,
    what is wrong??
    Can you help??
    Thanks
    package treeSelectionListener;
    import java.awt.*;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class SelectableTreeTest extends JFrame
         public SelectableTreeTest(){
              JPanel jp = new JPanel();
              JPanel jp2 = new JPanel();
            MyTree myTree= new MyTree();
            MyTree myTree2= new MyTree();
            JTabbedPane tabbedPane = new JTabbedPane();
            tabbedPane.setPreferredSize(new Dimension(600,400));
            jp.setPreferredSize(new Dimension(600,400));
            jp2.setPreferredSize(new Dimension(600,400));
            myTree.setPreferredSize(new Dimension(600,400));
            myTree2.setPreferredSize(new Dimension(600,400));
            JScrollPane   jsp = new JScrollPane();
            jsp.setPreferredSize(new Dimension(600,400));
              add(jsp, BorderLayout.CENTER);
              jsp.setViewportView(tabbedPane);
              jp.add(myTree);
              jp2.add(myTree2);
              tabbedPane.addTab("1st Tree", jp);
              tabbedPane.addTab("2nd Tree", jp2);
        public static void main(String[] args) {
            JFrame frame = new SelectableTreeTest();
            WindowUtilities.setNativeLookAndFeel();
            frame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
            frame.pack();
            frame.setVisible(true);
      public class MyTree extends JTree implements TreeSelectionListener {
      private JTree tree;
      private JTextField currentSelectionField;
      public MyTree() {
        Container content = getContentPane();
        DefaultMutableTreeNode root =
          new DefaultMutableTreeNode("Root");
        DefaultMutableTreeNode child;
        DefaultMutableTreeNode grandChild;
        for(int childIndex=1; childIndex<4; childIndex++) {
          child = new DefaultMutableTreeNode("Child " + childIndex);
          root.add(child);
          for(int grandChildIndex=1; grandChildIndex<4; grandChildIndex++) {
            grandChild =
              new DefaultMutableTreeNode("Grandchild " + childIndex +
                                         "." + grandChildIndex);
            child.add(grandChild);
        tree = new JTree(root);
        tree.setEditable(true);
        tree.addTreeSelectionListener(this);
        content.add(new JScrollPane(tree), BorderLayout.CENTER);
        currentSelectionField = new JTextField("Current Selection: NONE");
        content.add(currentSelectionField, BorderLayout.SOUTH);
        setSize(250, 275);
        setVisible(true);
      public void valueChanged(TreeSelectionEvent event) {
        currentSelectionField.setText
          ("Current Selection: " +
           tree.getLastSelectedPathComponent().toString());
    }

    change this
    tree = new JTree(root);
    tree.setEditable(true);
    tree.addTreeSelectionListener(this);to this
    setEditable(true);
    addTreeSelectionListener(this);and this
    currentSelectionField.setText
      ("Current Selection: " +
       tree.getLastSelectedPathComponent().toString());to this
    currentSelectionField.setText
      ("Current Selection: " +
      getLastSelectedPathComponent().toString());and remove this
    private JTree tree;

  • IPhoto 11 - Edit tools fail after initial use of program

    Running 10.6.8 (all updates complete) on new MacBook. Began editing newly imported photos  - edit features failed after first 50 photos. I have tried...
    * updated all Mac Software
    * deleted user iPhoto preferences, emptied trash, reopened
    * repaired iPhoto library, etc....
    Has this happened to anyone else? Any suggestions for repair/recovery?

    Try this:  launch iPhoto with the Option key held down and create a new, test library.  Import some photos and check to see if the same problem persists. If it does then a reinstall of iPhoto seems warranted. To do so you'll have to delete the current application and all files with "iPhoto" in the file name with either a .PKG or .BOM extension that reside in the HD/Library/Receipts folder and from the /var/db/receipts/  folder,
    Click to view full size
    Then install iPhoto from the disk it came on originally.
    OT

  • Editing Audio from Timeline in Another Program

    Often, one will want to edit the Audio on the Timeline, in another application, like Adobe Audition. Premiere versions allow for this to be done easily, and with exacting control.
    Let's say that one has dozens of edited Clips on the Timeline, and they wish to edit ALL of the Audio. * Editing those individual Clips is easy, but how does one edit them all in one file, which will then replace the original Audio in the Clips?
    The best way to accomplish this is to Export, or Share the Timeline as an Audio Only file. This Export/Share will be slightly different, depending on the exact Premiere program, and even on the version of that Premiere Program. Often, the Audio-only Export/Share is from the MS AVI Export/Share screen. One would choose Export Audio, leaving Export Video unchecked. If Multiplexing does not automatically set to "None," choose that now.
    For this "round-trip" process, the Audio file format is very important. The ideal choice of Export/Share is PCM/WAV @ 48KHz 16-bit. This will yield an uncompressed Audio file, that almost every Audio editing program will easily handle, and is also the format, that one will want to Export, or Save from the Audio editor, for the second leg of our round-trip.
    Import, or Open that resultant PCM/WAV in the Audio editing program, and edit, as is needed. When done, just Export, or Save (depends on the program) that edited Audio as a PCM/WAV @ 48KHz 16-bit. In some Audio editing programs, this will be listed as WAV (Uncompressed). The Sample-Rate and Bit-Depth are important, as the 48KHz and 16-bit are the ideal for any flavor of Premiere, and though Conforming will be necessary for editing, it will be easy on the program, and there will be no issues. Stay away from any compressed Audio formats/CODEC's, like MPEG/MP3. You do not want to throw away precious data at any step. That is why we use PCM/WAV for the Export/Share, and then the Export/Save from the Audio editing program.
    When done, just Import that resultant PCM/WAV into Premiere. Wait a moment for all Conforming to complete, and then drag that WAV to the Timeline, on a free Audio Track that matches your WAV's Channel-count, i.e. a 2-channel Audio Track for Stereo, or a 1-channel Audio Track for Mono (these must match in Premiere). For more detail on channel-count and Audio Tracks, see this ARTICLE.
    Now comes a personal preference for completing this round-trip. I like to leave my original Audio, just in case I change my mind. Gathering up and Trimming the original Audio can be a tedious task. As I have placed my edited WAV onto an empty Audio Track, I just go to Window>Audio Mixer, and Mute any/all Audio Tracks, containing my original Audio. It's still there, if I ever need it, but is now Muted.
    Hope that this helps,
    Hunt
    * Sometimes we want part of the Timeline's Audio, but that part spans multiple Clips. There is no need to Export/Share the entire Timeline, and then Trim it. Just set the WAB (Work Area Bar) to the part that we do want, and make sure to choose "Work Area" in the Export/Share settings dialog.
    Also, and especially when doing just a segment, covered by the WAB, I like to position the CTI (Current Time Indicator) or Playhead (CS 5.5) at the beginning of the WAB, with Snap ON. As I drag my edited WAV to the free Audio Track, it will Snap into place, right at the beginning of the WAB.

    There isn't any simply way to where you want to go.
    You can export each track separately. Switch off the audibility for all the tracks except one. Export the track. Repeat for each of the tracks in the timeline. Export the video for reference.

  • Editing with another program

    I'm migrating over from Windows, where I used Adobe Photoshop Elements to organize my photos. (Note to Apple: Add tagging for People, Places, and Events! keywords just doesn't cut it!)
    The trouble I'm having is that photos that I edited in Elements are showing up in iPhoto (that is, the different versions of the file). Is there a way I can mark one photo as being the original of another?
    Presumably, I'll be editing some of these pictures in other programs besides iPhoto since the editing tools are so limited (Another note to Apple, add a Heal brush). I want to make sure that what I edit outside of iPhoto doesn't overwrite my file and isn't lost as the original.
    Thanks,

    kepardue:
    Welcome to the Apple Discussions. You can use PSE as your editor of choice by selecting it in iPhoto's General Preferences window. Then when you double-click on a photo PSE will open letting you edit. However the one caveat that you must follow is that if you change the file name, extension, i.e. a layered PSE file, then you MUST save it to the desktop and import it as a new file. That's the only way iPhoto will know it has been changed. If you edit it and keep the file name and extension then you'll be able to do a normal save and the changes will be noted by iPhoto. Additional edits of psd files after then have been imported into iPhoto can be saved normally. As soon as you do any edit, (psd files notwithstanding), the edited version is created and saved in the Modified folder and the original file is untouched.

  • Editing a Java program

    Hi All, i have a Java program here that need editing, i have no clue about Java programing, is there anyone ourt there that can help me ??
    Thanks Steve

    It is not about money :) But here most people have a work, and unless you ask specific questions they can not answer you. Also it is not nice to help someone who does not show he wants to learn, but just want to do some thing very fast.
    an advice (altough I am sure you do not need it :) try learning java, you will see that what you learn in java is very helpfull also in other languages. There are planty of websites from were to start :) and when you are stuck then post here :) and I am sure some people would help out if you show them you did your best!

  • After editing for a while the program slows to a crawl how do I fix this?

    After editing in iMovie for a while the programs slows down - especially when I have heavy graphics and audio in the time line.  Can anyone help me with this problem?

    How much free space do you have on your disk drive?

  • Wrap it in an .app?

    With Intel Macs, Rosetta does not emulate BSD programs as it does an .app. I notice, however, that I can easily use the OPEN command to invoke an .app from Terminal. I do this all the time with TextEdit.
    This leads to an idea: wrap a BSD program somehow to make it look like an .app, and then invoke it with OPEN. I'm not enough of a Unix expert to know if this is feasible, or easy to do. If, however, somebody out there sees a simple way to do this, or even a partial solution, it could be much appreciated.
    I am inspired by the fact that Terminal is, in fact, Terminal.app. Does terminal run in emulation on Intel Macs, or has it fully been recompiled? Can you wrap up Rosetta as a BSD program, and then make it run another BSD program, or emulate the whole of a pre-Intel Terminal.app?
    This could amount to a nifty piece of shareware, but I suspect somebody else out there could do it with more facility than I could.
    You can't step twice in the same river.

    MacLemon --
    Firstly, look at my earlier query about "Rosetta AND BSD." Darwin programs will not be emulated, was the definitive answer.
    Basically, I want to run Artificial Intelligence sorts of things: Lisp, Haskell, Prolog, etc. I have my hopes up for building MIT/GNU Scheme and SBCL, because they already have running versions using the X86 instruction set, and also have web-pages on how to build for "other Unix Systems." I'm just procrastinating a bit, because of the trouble I had once getting clisp-2.27 to build, finally doing it from a CVS.
    I would just like to tweak some professional Unix maven to write a sort of wrapper. To clarify, I use TextEdit as my normal Darwin editor. How? With this alias ...
    alias edit='open -a /Applications/TextEdit.app'
    Maybe somebody can connive a general way to stick something in /Applications so that the same trick could load something like GNU Prolog.
    Hey Apple, you hear this? If this is easy, you could make a bundle selling machines to the AI community!
    I promise that when I take the plunge, I will report any success at building things on Intel-Darwin (sounds like a safe-house for Australian covert action).
    -- devious dan

  • Getting K7T Turbo limited edition what is the fastest processor it will run

    As the subject sugests my friend is about to give me his motherboard, ram and cpu the motherboard is a K7T Turbo-R (I'm assured this is the limited edition one) but he only has a slow old 1ghz processor on it. I've looked at the bios upgrades and I'm not sure what the fastest chip is that I can fit with the latest bios upgrade as it's written in funny english. It says: Support AMD XP 2400+ & 2600+ (K7T Turbo2 only) does this mean both chips are only supported on the turbo 2 or just the 2600+. My educated guess tells me that I would be able to fit a 2400+ as this is a 133/266 FSB processor but not the 2600+ as this is 333mhz. Please can someone help me I'm just starting to learn about computers and I don't really know what I'm talking about!

    Hello,
    If you are sure it is the limited edition then
    http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_cpu_support_detail.php?UID=25&kind=1
    "It says: Support AMD XP 2400+ & 2600+ (K7T Turbo2 only)"
    That lines means only the K7T Turbo2 supports the XP2400 and XP2600
    (non 166FSB versions  )
    http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_cpu_support_detail.php?UID=24&kind=1
    See they are 2 different boards?

  • Text wrap not working... What am I doing wrong?

    Hi... I guess I do not know how to set up the text wrap in reflow to follow the size of the container that it is in...
    I have created a text box with the text the size I want and the width and hight of the box is correct... While editing the text it wraps correctly... But the moment I un-select the the text it ignores its container and overflows... Basically goes from being vertical text back to horizontal... I tried the different overflow options in the layout tab but no luck...
    Here are some images for reference... This one is correct and following the wrap (but only happens when i am editing the text)
    But then when I deselect the text... The wrap goes away and this happens... Even though you can see the container is still the same width...
    My plan is to have it be vertical for desktop browser sizes and then be horizontal for mobile and tablet... I was really hoping it was as easy as setting the size of text box... But it is not seeming to work...
    Thank you for any help!!!

    Just tried adobe direct support via chat to get help on this.... OMG I wanted to blow my brains out... So very very unhelpful and a complete waste of time.... They had no idea and said moderators on the forums would be better support... I explained that I had asked this question on there several days ago.... Getting so over adobe... WOW!

  • ID crashes when using text wrap.

    Hi there
    This trouble came out of the blue. I've been wrapping text around 10 or so pics and suddenly, every time I click the "Text wrap" button., the program crashes.
    I have tried to export the file to .IDML, but the problem goes on.
    I'm desperate, as I'm finishing the work and there's too little to do yet, but I must deliver it next week.
    Please help.

    Troubleshooting 101: Replace, or "trash" your InDesign preferences

Maybe you are looking for

  • Trouble Syncing Ipod After reinstall of windows

    Hi, I just recently re-installed my windows and now im having problems syncing my ipod. I connect my ipod to the computer, Itunes recognizes it and brings it up into devices but will not transfer the music that i have placed in my library. I have aut

  • Looking for a standard dock without having to remove my 3GS case

    Hi, I've got a 3GS with a silicone case, now I'm looking for abog standard, white or black dock for charging and syncing which I can sit myphone on without having to remove the case all the time. Does anyone know wherea good place to look for these i

  • Mac app shop refund

    I have reversed the charge for "Call of Duty® 4: Modern Warfare™". You will see a store credit of $49.99 in three to five business days. You may need to sign out of the iTunes Store and then sign back in before you see the credit in your account. Doe

  • Can I export my FCP X project directly into iDVD?

    I have not yet purchased FCP X, but before I do, I want to make sure that I can import my FCP X project directly into iDVD along with chapter markers.  Thank you for your help. 

  • What is the best quality headphone adapter out there?

    I use a pair of ultimate ears 5 eb pros and I dont want it all to go to waste because i have to go through a low quality headphone adapter. i know the long belkin one sold at the apple store is the only popular one, but is there a high end model wort